Skip to content

Commit 5106b18

Browse files
committed
Add simple CI
1 parent 42741e4 commit 5106b18

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
test:
7+
name: Test
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- run: rustup toolchain install stable --profile minimal
12+
- uses: Swatinem/rust-cache@v2
13+
- name: Build
14+
run: cargo build --all-targets
15+
- name: Check formatting
16+
run: cargo fmt --all --check

0 commit comments

Comments
 (0)