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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,42 @@

jobs:
rust:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4

- name: Install Rust
# Pinned (not @stable) so rustfmt/clippy are deterministic — a floating stable
# toolchain reformats/relints across releases and repeatedly red-lit CI (PRs #12, #14).
# Keep in step with rust-toolchain.toml.
uses: dtolnay/rust-toolchain@1.96.0
with:
components: rustfmt, clippy

- name: Format check
run: cargo fmt --all --check

- name: Clippy
run: cargo clippy --workspace --all-targets -- -D warnings

- name: Test workspace
run: cargo test --workspace

docs-integrity:

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4

- name: Required governance files
run: |
test -f LICENSE
test -f PROVENANCE.md
test -f NOTICE.md
test -f docs/adr/0001-hellgraph-positioning.md
test -f docs/audit/SPEC_TRACEABILITY.md
test -f docs/audit/KERNEL_SEAM_AUDIT.md

- name: Guard positioning language
run: |
grep -q "not a drop-in Blazegraph replacement" README.md
grep -q "not represented as a direct Java fork of Blazegraph" PROVENANCE.md

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {contents: read}
4 changes: 2 additions & 2 deletions .github/workflows/ts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ permissions:

jobs:
build-and-verify-dist:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
# the engine — the artifact's source of truth — was the one copy where drift went unnoticed.
# Runs on every PR (cheap, no path filter) so a re-vendor can never land unverified.
kko-provenance:
runs-on: ubuntu-latest
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
Loading