build(deps): Bump actions/checkout from 6 to 7 in the gha-deps group #362
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: "On commit" | |
| on: push | |
| permissions: read-all | |
| jobs: | |
| binary: | |
| name: Binary | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| goos: | |
| - linux | |
| goarch: | |
| - amd64 | |
| - arm64 | |
| uses: PossibleLlama/workflows/.github/workflows/golang-binary.yaml@v0.2.21 | |
| with: | |
| source-path: "./exec/cli/main.go" | |
| build-flags: "-ldflags=\"-w -s -X 'main.VERSION=$(git rev-list -1 HEAD)'\"" | |
| os: ${{ matrix.goos }} | |
| arch: ${{ matrix.goarch }} | |
| linting: | |
| name: Linting | |
| uses: PossibleLlama/workflows/.github/workflows/golang-linting.yaml@v0.2.21 | |
| with: | |
| source-path: "./exec/cli/main.go" | |
| test-small: | |
| name: Test small | |
| uses: PossibleLlama/workflows/.github/workflows/golang-testing-small.yaml@v0.2.21 | |
| with: | |
| enable-performance: false | |
| enable-fuzz: false |