Skip to content
Draft
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
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
desktop-rust: ${{ steps.filter.outputs.desktop-rust }}
web: ${{ steps.filter.outputs.web }}
mobile: ${{ steps.filter.outputs.mobile }}
spec: ${{ steps.filter.outputs.spec }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
with:
Expand Down Expand Up @@ -74,6 +75,10 @@
- 'scripts/test-mobile-worktree-overrides.sh'
- '.github/workflows/mobile-release-candidate.yml'
- '.github/workflows/ci.yml'
spec:
- 'docs/spec/**'
- 'scripts/check-tla-specs.sh'
- '.github/workflows/ci.yml'
- name: Release workflow source contract
run: scripts/test-release-ref-contract.sh
- name: Desktop release candidate contract
Expand Down Expand Up @@ -884,6 +889,23 @@
fi
echo "No dead token references found."

tla-specs:
name: TLA+ Spec Checks
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [changes]
if: github.event_name == 'push' || needs.changes.outputs.spec == 'true'
permissions:
contents: read
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0

Check warning

Code scanning / zizmor

detects commit SHAs that don't match their version comment tags Warning

detects commit SHAs that don't match their version comment tags
with:
distribution: temurin
java-version: '17'
- name: Model-check TLA+ specs
run: scripts/check-tla-specs.sh

server-cross-compile:
name: Server Cross-Compile
runs-on: ubuntu-latest
Expand Down
Loading
Loading