We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d01b90c commit 1f69631Copy full SHA for 1f69631
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
+ workflow_dispatch:
8
9
+jobs:
10
+ test:
11
+ name: cargo test (${{ matrix.os }})
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ os: [ubuntu-latest, macos-latest, windows-latest]
17
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v4
21
22
+ - name: Install Rust
23
+ uses: dtolnay/rust-toolchain@stable
24
25
+ - name: Rust cache
26
+ uses: Swatinem/rust-cache@v2
27
28
+ - name: Test
29
+ run: cargo test --workspace --locked
30
0 commit comments