Skip to content

docs: improve installation and project status #4

docs: improve installation and project status

docs: improve installation and project status #4

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: stable
cache: true
- name: Verify formatting
shell: bash
run: |
unformatted="$(gofmt -l .)"
if [[ -n "$unformatted" ]]; then
printf 'The following files require gofmt:\n%s\n' "$unformatted"
exit 1
fi
- name: Vet
run: go vet ./...
- name: Test with race detector
run: go test -race ./...
- name: Build CLI
run: go build ./cmd/topoqueue