chore(example): remove EPaxos bug and fix specs #29
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: | |
| check: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: specl | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: specl | |
| - run: cargo fmt --check | |
| - run: cargo clippy --workspace -- -D warnings -A clippy::only_used_in_recursion -A clippy::collapsible_match -A clippy::too_many_arguments -A clippy::manual_is_multiple_of | |
| - run: cargo test --workspace --exclude specl-tla | |
| - run: cargo test -p specl-tla --test translate_corpus -- --skip benchmark_tla_files_translate |