update debugger readme #98
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Run tests | |
| run: cargo test | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Download core spec tests | |
| run: uv run download-core-tests.py | |
| - name: Core spec compliance (expect 1960+ passing) | |
| run: | | |
| OUTPUT=$(cargo test --features core-tests --test core_tests -- -q 2>&1 || true) | |
| echo "$OUTPUT" | |
| PASSED=$(echo "$OUTPUT" | grep -oP '\d+ passed' | grep -oP '\d+') | |
| echo "Passed: $PASSED" | |
| if [ "$PASSED" -lt 1960 ]; then | |
| echo "FAIL: expected at least 1960 passing, got $PASSED" | |
| exit 1 | |
| fi | |
| fmt: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rustfmt | |
| - run: cargo +nightly fmt --all -- --check | |
| clippy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - run: cargo clippy -- -D warnings |