Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ jobs:
- name: Examples
run: bash scripts/check-examples.sh

# Adding a suite here means adding it to the release workflow's `verify`
# job too. Nothing enforces that the two agree, and the last time they
# drifted it was this step that was missing from a release.

# Cheap, and both targets have found real bugs. 30s each, as in CLAUDE.md.
fuzz:
needs: changes
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,16 @@ jobs:
fi
echo "version $version"

# The same correctness suites the CI workflow's `language` job runs, so a
# tag cannot publish something master would have rejected. These two lists
# have to agree: check-examples.sh was added to CI and not here, and went
# missing from every release until somebody thought to compare them.
- run: go build -o aria .
- run: go vet ./...
- run: go test ./...
- run: bash scripts/characterize.sh verify
- run: bash scripts/check-readme.sh
- run: bash scripts/check-examples.sh

build:
name: ${{ matrix.name }}
Expand Down