Bump github.com/carapace-sh/carapace from 0.50.3-0.20240311185857-480da0e3873f to 1.4.0 in /cmd #409
Workflow file for this run
This file contains 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.23.0 | |
steps: | |
- name: shallow clone | |
uses: actions/checkout@v4 | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
- name: deep clone | |
uses: actions/checkout@v4 | |
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: 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@v6 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AUR_KEY: ${{ secrets.AUR_KEY }} | |
GORELEASER_GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} |