Skip to content

doc: Add manpage for av stack branch-commit #537

doc: Add manpage for av stack branch-commit

doc: Add manpage for av stack branch-commit #537

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ "**" ]
jobs:
go-unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Build
run: go build -v ./...
- name: Test
run: go test -v --vet=all ./...
- name: CLI smoke test
run: go run ./cmd/av --help
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- run: >
go run github.com/golangci/golangci-lint/cmd/golangci-lint
run --version --out-format github-actions