feat(cookies): build-tag-selectable cookie provider (kooky default, HackBrowserData opt-in) #74
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: stable | |
| - run: go vet ./... | |
| - run: go test -race -cover ./... | |
| - run: go build ./... | |
| - name: Cross-compile android/arm64 | |
| run: GOOS=android GOARCH=arm64 CGO_ENABLED=0 go build -o /dev/null . |