Skip to content

Milestones 1–2: PEG parser engine port and the accept/reject conforma… #3

Milestones 1–2: PEG parser engine port and the accept/reject conforma…

Milestones 1–2: PEG parser engine port and the accept/reject conforma… #3

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go build ./...
- run: go vet ./...
- run: gofmt -l . && test -z "$(gofmt -l .)"
- run: go test -race ./...