Skip to content

Commit 5ed2872

Browse files
committed
add CI tests
1 parent 3125edd commit 5ed2872

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/tests.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Run Tests
2+
on: [ pull_request ]
3+
4+
concurrency:
5+
group: tests-${{ github.workflow }}-${{ github.ref }}
6+
cancel-in-progress: true
7+
8+
jobs:
9+
tests:
10+
strategy:
11+
fail-fast: false
12+
runs-on: ubuntu-22.04
13+
name: Tests
14+
steps:
15+
- uses: actions-rust-lang/setup-rust-toolchain@v1
16+
17+
- uses: actions/checkout@v4
18+
19+
- name: Run Tests
20+
run: |
21+
cargo test

0 commit comments

Comments
 (0)