Implement selector expressions #436
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| permissions: {} | |
| jobs: | |
| ci: | |
| name: CI | |
| permissions: | |
| contents: read | |
| uses: FollowTheProcess/ci/.github/workflows/Go.yml@v3 | |
| bats: | |
| name: Bats Tests | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Setup Bats | |
| id: bats | |
| uses: bats-core/[email protected] | |
| with: | |
| support-path: "${{ github.workspace }}/tests/bats-support" | |
| assert-path: "${{ github.workspace }}/tests/bats-assert" | |
| detik-path: "${{ github.workspace }}/tests/bats-detik" | |
| file-path: "${{ github.workspace }}/tests/bats-file" | |
| - name: Build Test Binary | |
| run: mkdir -p ./bin && go build -o ./bin/zap -ldflags='-s -w -X go.followtheprocess.codes/zap/internal/cmd.version=test' ./cmd/zap | |
| - name: Bats Tests | |
| env: | |
| BATS_LIB_PATH: ${{ steps.bats.outputs.lib-path }} | |
| TERM: xterm | |
| run: bats tests |