-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (24 loc) · 817 Bytes
/
Copy pathcorpus.yml
File metadata and controls
29 lines (24 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Real game-data gate. Kept off normal PRs because it fetches an external corpus
# and runs the heavier ignored release-mode tests.
name: Corpus
on:
schedule:
- cron: "23 4 * * 1"
workflow_dispatch:
workflow_call:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
corpus:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: Swatinem/rust-cache@v2
- name: Fetch corpus
run: bash scripts/fetch-corpus.sh
- name: Corpus diagnostics
run: cargo test --release --locked -p zerosyntax-analysis --test corpus -- --ignored --nocapture
- name: Corpus incremental equivalence
run: cargo test --release --locked -p zerosyntax-analysis --test incremental corpus_edit_sequences_match_full_parse -- --ignored --nocapture