Refactor and split out things into cmd and lib #159
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Go | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| build: | |
| #runs-on: alrest-techarohq | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: build essential | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential | |
| - name: Set up Homebrew | |
| uses: Homebrew/actions/setup-homebrew@master | |
| - name: Setup Homebrew cellar cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| /home/linuxbrew/.linuxbrew/Cellar | |
| /home/linuxbrew/.linuxbrew/bin | |
| /home/linuxbrew/.linuxbrew/etc | |
| /home/linuxbrew/.linuxbrew/include | |
| /home/linuxbrew/.linuxbrew/lib | |
| /home/linuxbrew/.linuxbrew/opt | |
| /home/linuxbrew/.linuxbrew/sbin | |
| /home/linuxbrew/.linuxbrew/share | |
| /home/linuxbrew/.linuxbrew/var | |
| key: ${{ runner.os }}-go-homebrew-cellar-${{ hashFiles('go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go-homebrew-cellar- | |
| - name: Install Brew dependencies | |
| run: | | |
| brew bundle | |
| - name: Setup Golang caches | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cache/go-build | |
| ~/go/pkg/mod | |
| key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-golang- | |
| - name: Cache playwright binaries | |
| uses: actions/cache@v3 | |
| id: playwright-cache | |
| with: | |
| path: | | |
| ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ hashFiles('**/go.sum') }} | |
| - name: Build | |
| run: go build ./... | |
| - name: Test | |
| run: go test ./... |