Merge pull request #329 from carapace-sh/dependabot/go_modules/github… #1325
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: Go | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/carapace-sh/go:1.25.4 | |
| steps: | |
| - name: shallow clone | |
| uses: actions/checkout@v7 | |
| if: "!startsWith(github.ref, 'refs/tags/')" | |
| - name: deep clone | |
| uses: actions/checkout@v7 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| fetch-depth: 0 | |
| - name: fix git safe.directory | |
| run: git config --global --add safe.directory '*' | |
| - name: Build | |
| run: ls cmd/ | xargs -I'{}' sh -c "cd ./cmd/{} && go build -v ." | |
| - name: Test | |
| run: go test -v -coverprofile=profile.cov ./... | |
| - name: "Check formatting" | |
| run: '[ "$(gofmt -d -s . | tee -a /dev/stderr)" = "" ]' | |
| - uses: shogo82148/actions-goveralls@v1 | |
| with: | |
| path-to-profile: profile.cov | |
| - name: "staticcheck" | |
| run: go install honnef.co/go/tools/cmd/staticcheck@latest && staticcheck ./... | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v7 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| version: latest | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| AUR_KEY: ${{ secrets.AUR_KEY }} | |
| FURY_TOKEN: ${{ secrets.FURY_TOKEN }} | |
| GORELEASER_GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} |