chore(deps): bump aquasecurity/trivy-action from 97e0b3872f55f89b95b2f65b3dbab56962816478 to bfa4b33a029b9aa80ddb784b45574c30e072c59e #44
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: Run Tests | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| target: | |
| - docker-build | |
| - go-build-release-darwin-amd64 | |
| - go-build-release-darwin-arm64 | |
| - go-build-release-linux-amd64 | |
| - go-build-release-linux-arm32-v6 | |
| - go-build-release-linux-arm32-v7 | |
| - go-build-release-linux-riscv64 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Set up Go | |
| uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 | |
| with: | |
| go-version: 1.25 | |
| - name: Build targets via `make` | |
| run: make ${{ matrix.target }} |