build(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.9 #1870
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: Go | |
on: | |
pull_request: | |
push: | |
jobs: | |
nonposix: | |
runs-on: ubuntu-latest | |
container: ghcr.io/carapace-sh/dev | |
steps: | |
- name: shallow clone | |
uses: actions/checkout@v5 | |
- name: fix git safe.directory | |
run: git config --global --add safe.directory '*' | |
- name: Replace dependency | |
run: go work edit -replace github.com/spf13/pflag=github.com/carapace-sh/[email protected] | |
- name: Build | |
run: go build -v ./... | |
- name: install carapace | |
run: curl -L https://github.com/carapace-sh/carapace-bin/releases/download/v1.4.1/carapace-bin_1.4.1_linux_amd64.tar.gz | tar -xzvf - -C /usr/local/bin/ carapace | |
- name: Test | |
run: go test -v -coverprofile=profile.cov ./... | |
build: | |
runs-on: ubuntu-latest | |
container: ghcr.io/carapace-sh/dev | |
steps: | |
- name: shallow clone | |
uses: actions/checkout@v5 | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
- name: deep clone | |
uses: actions/checkout@v5 | |
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: install carapace | |
run: curl -L https://github.com/carapace-sh/carapace-bin/releases/download/v1.4.1/carapace-bin_1.4.1_linux_amd64.tar.gz | tar -xzvf - -C /usr/local/bin/ carapace | |
- 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 ./... | |
release: | |
runs-on: ubuntu-latest | |
container: ghcr.io/carapace-sh/go:1.23.1 | |
if: startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: deep clone | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
- name: fix git safe.directory | |
run: git config --global --add safe.directory '*' | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
AUR_KEY: ${{ secrets.AUR_KEY }} | |
GORELEASER_GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
doc: | |
runs-on: ubuntu-latest | |
container: ghcr.io/carapace-sh/mdbook | |
steps: | |
- uses: actions/checkout@v5 | |
- name: "build docs" | |
run: mdbook build docs | |
- name: "push gh-pages" | |
if: github.ref == 'refs/heads/master' | |
run: | | |
cd docs/book/html | |
git init | |
git config user.name rsteube | |
git config user.email [email protected] | |
git add . | |
git commit -m "initial commit [ci skip]" | |
git push --force https://rsteube:${GITHUB_TOKEN}@github.com/carapace-sh/carapace-spec.git master:gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |