Skip to content

feat: added panic hook #544

feat: added panic hook

feat: added panic hook #544

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