File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: MPL-2.0
2+ name : CodeQL Security Analysis
3+
4+ on :
5+ push :
6+ branches : [main, master]
7+ pull_request :
8+ branches : [main, master]
9+ schedule :
10+ - cron : ' 0 6 * * 1'
11+
12+ # Estate guardrail: cancel superseded runs so re-pushes / rebased PR
13+ # updates do not pile up queued runs against the shared account-wide
14+ # Actions concurrency pool. Applied only to read-only check workflows
15+ # (no publish/mutation), so cancelling a superseded run is always safe.
16+ concurrency :
17+ group : ${{ github.workflow }}-${{ github.ref }}
18+ cancel-in-progress : true
19+
20+ permissions :
21+ contents : read
22+
23+ jobs :
24+ analyze :
25+ runs-on : ubuntu-latest
26+ timeout-minutes : 60
27+ permissions :
28+ contents : read
29+ security-events : write
30+ strategy :
31+ fail-fast : false
32+ matrix :
33+ include :
34+ - language : javascript-typescript
35+ build-mode : none
36+ - language : cpp
37+ build-mode : none
38+
39+ steps :
40+ - name : Checkout
41+ uses : actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e # v6.0.3
42+
43+ - name : Initialize CodeQL
44+ uses : github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v3
45+ with :
46+ languages : ${{ matrix.language }}
47+ build-mode : ${{ matrix.build-mode }}
48+
49+ - name : Perform CodeQL Analysis
50+ uses : github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v3
51+ with :
52+ category : " /language:${{ matrix.language }}"
Original file line number Diff line number Diff line change 2323 echidna-verify :
2424 name : ECHIDNA Proof Verification
2525 runs-on : ubuntu-latest
26+ timeout-minutes : 30
2627 steps :
2728 - name : Checkout code
2829 uses : actions/checkout@1cce3390c2bfda521930d01229c073c7ff920824 # v6.0.2
4445 cargo build --release --bin echidna
4546 echo "/tmp/echidna/target/release" >> $GITHUB_PATH
4647
48+ - name : Install proof provers
49+ run : |
50+ set -euo pipefail
51+ sudo apt-get update
52+ sudo apt-get install -y --no-install-recommends \
53+ lean \
54+ coq \
55+ agda \
56+ isabelle \
57+ z3
58+
4759 - name : Verify ECHIDNA available
4860 run : echidna list-provers
4961
5567 correspondence :
5668 name : Lean 4 ↔ Rust Correspondence
5769 runs-on : ubuntu-latest
70+ timeout-minutes : 30
5871 steps :
5972 - name : Checkout code
6073 uses : actions/checkout@1cce3390c2bfda521930d01229c073c7ff920824 # v6.0.2
You can’t perform that action at this time.
0 commit comments