Skip to content

Shell completion for --issue flag with live issue lookup #9

Shell completion for --issue flag with live issue lookup

Shell completion for --issue flag with live issue lookup #9

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Format check
run: |
go install golang.org/x/tools/cmd/goimports@latest
make fmt
git diff --exit-code || (echo "::error::goimports produced changes; run 'make fmt' locally" && exit 1)
- name: Vet
run: make vet
- name: Lint
uses: golangci/golangci-lint-action@v7
with:
install-mode: goinstall
version: v2.10.1
- name: Test
run: make test