Skip to content

Commit 678a085

Browse files
committed
add github actions pipeline
1 parent c3dc209 commit 678a085

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
push:
3+
pull_request:
4+
5+
jobs:
6+
test:
7+
name: Test on ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os:
12+
- ubuntu-latest
13+
- macos-latest
14+
- windows-latest
15+
16+
steps:
17+
- uses: actions/checkout@v5
18+
- uses: actions-rust-lang/setup-rust-toolchain@v1
19+
20+
- name: Run tests
21+
run: cargo test --all --verbose

0 commit comments

Comments
 (0)