We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e015c commit 3dd00d5Copy full SHA for 3dd00d5
1 file changed
.github/workflows/build-and-test.yml
@@ -6,6 +6,11 @@ on:
6
jobs:
7
taurus:
8
runs-on: ubuntu-latest
9
+ services:
10
+ nats:
11
+ image: nats:2
12
+ ports:
13
+ - 4222:4222
14
15
steps:
16
- uses: actions/checkout@v6
@@ -15,8 +20,11 @@ jobs:
20
run: PATH=${{ runner.temp }}/proto/bin:$PATH cargo build
21
env:
17
22
RUST_BACKTRACE: 'full'
18
- - name: Run Tests
19
- run: cargo test
- - name: Run Test Suite
23
+ - name: Run workspace tests
24
+ run: cargo test --workspace --all-targets
25
+ - name: Run NATS test execution request tests
26
+ run: cargo test -p taurus test_execution_request -- --ignored --nocapture
27
+ env:
28
+ NATS_URL: nats://127.0.0.1:4222
29
+ - name: Run tests package flow suite
30
run: cargo run --package tests
-
0 commit comments