feat: added panic hook #544
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: Build packages | |
| on: | |
| push: | |
| jobs: | |
| taurus: | |
| runs-on: ubuntu-latest | |
| services: | |
| nats: | |
| image: nats:2 | |
| ports: | |
| - 4222:4222 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup rust | |
| run: rustup update --no-self-update stable | |
| - name: Build Taurus | |
| run: PATH=${{ runner.temp }}/proto/bin:$PATH cargo build | |
| env: | |
| RUST_BACKTRACE: 'full' | |
| - name: Run workspace tests | |
| run: cargo test --workspace --all-targets | |
| - name: Run NATS test execution request tests | |
| run: cargo test -p taurus test_execution_request -- --ignored --nocapture | |
| env: | |
| NATS_URL: nats://127.0.0.1:4222 | |
| - name: Run tests package flow suite | |
| run: cargo run --package tests |