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
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,38 @@ jobs:

- name: Validate JSON / JSONC / TOML / YAML
run: python3 .github/validate-configs.py

# The Standard cites skills by id, but the catalogue lives in Construct, so
# nothing here could tell whether a cited skill exists. It shipped for months
# naming `spacecraft-accessibility` when the skill had always been
# `spacecraft-accessibility-support` — silently, because a missing skill does
# not announce itself; it simply never loads, and §18 work directed at it
# proceeds without it.
#
# This job checks out Construct read-only (both repos are public, so no token)
# and runs Construct's checker against this document. The dependency direction
# is deliberate: the Standard cites the catalogue, so the Standard validates
# against it. The version check is off — this document's own masthead version
# is the one legitimate pin in the ecosystem.
skill-refs:
name: Skill references resolve against the Construct catalogue
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/checkout@v4
with:
repository: Spacecraft-Software/Construct
path: .construct
persist-credentials: false

- uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Validate skill references
run: |
python3 .construct/.github/check-skill-refs.py \
--catalogue .construct \
--no-version-check \
The_Steelbore_Standard.texi The_Steelbore_Standard.md
Loading