Skip to content

Commit 18ca6e7

Browse files
committed
Add a test workflow
1 parent 7524e54 commit 18ca6e7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Test
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
name: test
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: dtolnay/rust-toolchain@stable
13+
- uses: Swatinem/rust-cache@v2
14+
with:
15+
key: "test"
16+
- run: cargo check

0 commit comments

Comments
 (0)