Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/setup-go` from 5 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v7) Updates `actions/setup-node` from 4 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
name: Processing conformance corpus
|
|
|
|
# /processing/conformance/cases IS the Phase 8 rule language spec: two
|
|
# implementations (Rust in the agent, Go at ingest) will each be held to
|
|
# it, and two hand-written implementations of one language diverge
|
|
# unless something shared pins them.
|
|
#
|
|
# Neither implementation exists yet, so nothing here executes rules.
|
|
# What this checks is that the corpus stays well-formed in the meantime
|
|
# -- known actions, addressable fields, compilable patterns, no case
|
|
# quietly depending on record_id. Cheap insurance against the spec
|
|
# rotting during the gap between writing it and building against it.
|
|
#
|
|
# Its own workflow, following web-routes.yml's reasoning: license-
|
|
# compliance.yml already carries one unrelated check for historical
|
|
# reasons, and that is not worth compounding.
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
conformance-corpus:
|
|
name: processing conformance corpus check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
- run: python3 processing/conformance/validate.py
|