Skip to content

traverse: complete values attached to flags for non-optarg as well #1057

traverse: complete values attached to flags for non-optarg as well

traverse: complete values attached to flags for non-optarg as well #1057

Workflow file for this run

name: Go
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/rsteube/carapace
steps:
- name: shallow clone
uses: actions/checkout@v2
if: "!startsWith(github.ref, 'refs/tags/')"
- name: deep clone
uses: actions/checkout@v2
if: startsWith(github.ref, 'refs/tags/')
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Generate
run: go generate ./...
- name: Test
run: mkdir .cover && CARAPACE_COVERDIR="$(pwd)/.cover" go test -v -coverpkg ./... -coverprofile=unit.cov ./... ./example-nonposix/...
- name: Convert coverage
run: go tool covdata textfmt -i .cover/ -o integration.cov
- name: Filter coverage
run: sed -i '/^github.com\/rsteube\/carapace\/third_party/d' unit.cov integration.cov
- name: "Check formatting"
run: '[ "$(gofmt -d -s . | tee -a /dev/stderr)" = "" ]'
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: unit.cov
parallel: true
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: integration.cov
parallel: true
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}