Skip to content

README: refresh status, coverage table, formats, roadmap #6

README: refresh status, coverage table, formats, roadmap

README: refresh status, coverage table, formats, roadmap #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test, vet, build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: go vet
run: go vet ./...
- name: go test
run: go test ./...
- name: Build CLI
run: go build -o /dev/null ./cmd/pdfa11y