Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@
# - Files must live under a `tests/` subdirectory and be named `test_*.py`
# - Test classes must start with `Test`
# - Test functions/methods must start with `test_`
#
# v0.4 Go migration note: this pipeline is gated to PRs targeting `main`.
# The feat/go-migration line — PRs into feat/go-migration, pushes to it,
# the long-running task branches under it — is excluded. There is no
# value in running the v0.3 Python pytest suite against an in-flight Go
# rewrite. When feat/go-migration is ready to merge into main, the CI
# itself will be rewritten in that final integration PR (Go build, vet,
# fmt, test -race) so it actually exercises the v0.4 code at the
# boundary.
name: PR Tests

on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]

permissions:
Expand Down