advertise reconciliation capabilities #591
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: Replay regression | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build-and-run-replay: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| toolchain: "1.81.0" | |
| - name: Show Rustc | |
| run: rustc --version | |
| - name: Build replay crate | |
| run: | | |
| cargo build -p replay --verbose | |
| - name: Run replay binary | |
| run: | | |
| cargo run -p replay --manifest-path tools/replay/Cargo.toml --quiet |