Skip to content

Commit 5779081

Browse files
committed
workflow: Add new tests job.
1 parent a67be78 commit 5779081

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/tests.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Tests
2+
3+
on: [push]
4+
5+
env:
6+
CARGO_TERM_COLOR: always
7+
8+
jobs:
9+
debug_mode_test:
10+
name: Test code
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Run Cargo test
16+
run: cargo test --verbose --workspace --all-targets --all-features
17+
18+
release_mode_test:
19+
name: Test code in release mode
20+
runs-on: ubuntu-latest
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Run Cargo test in release mode
25+
run: cargo test --verbose --workspace --all-targets --all-features --release

0 commit comments

Comments
 (0)