chore: bump the all group with 3 updates #2558
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, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: "Unit test" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0 | |
| with: | |
| egress-policy: audit | |
| - name: Set up Go | |
| uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0 | |
| with: | |
| go-version: "1.25" | |
| check-latest: true | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| path: go/src/github.com/open-policy-agent/frameworks | |
| - name: Unit test | |
| run: | | |
| export PATH=$PATH:${GOBIN} | |
| make -C constraint native-test | |
| working-directory: go/src/github.com/open-policy-agent/frameworks | |
| env: | |
| GOPATH: ${{ github.workspace }}/go | |
| GOBIN: ${{ github.workspace }}/go/bin | |
| - name: Codecov Upload | |
| uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3 | |
| with: | |
| flags: unittests | |
| file: go/src/github.com/open-policy-agent/frameworks/constraint/cover.out | |
| fail_ci_if_error: false |