Skip to content

Merge pull request #316 from carapace-sh/selfupdate #1480

Merge pull request #316 from carapace-sh/selfupdate

Merge pull request #316 from carapace-sh/selfupdate #1480

Workflow file for this run

name: Go
on:
pull_request:
push:
jobs:
nonposix:
runs-on: ubuntu-latest
container: ghcr.io/carapace-sh/go:1.23.1
steps:
- name: shallow clone
uses: actions/checkout@v4
- 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: Test
run: go test -v -coverprofile=profile.cov ./...
build:
runs-on: ubuntu-latest
container: ghcr.io/carapace-sh/go:1.23.1
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 }}
doc:
runs-on: ubuntu-latest
container: ghcr.io/carapace-sh/carapace
steps:
- uses: actions/checkout@v4
- 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 }}