FIX #2356: Normalize Permission Expansion #1994
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: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: "go.mod" | |
| - name: Setup Go Tools | |
| run: make tools | |
| - name: Check Formatting | |
| run: make fmtcheck | |
| - name: QC Code | |
| run: make qc | |
| - name: Check Build | |
| run: make build | |
| - name: Test | |
| run: make test | |
| - name: Run VCR acceptance tests | |
| run: time make test-play-vcr-acc |