Skip to content

Commit 719d53a

Browse files
committed
add github actions pipeline
1 parent c3dc209 commit 719d53a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

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

0 commit comments

Comments
 (0)