Skip to content

Commit 6a170c6

Browse files
authored
Add CI
1 parent 60f1868 commit 6a170c6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/rust.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
CARGO_TERM_COLOR: always
9+
10+
jobs:
11+
build:
12+
runs-on: windows-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Build
17+
run: cargo build --verbose
18+
- name: Check formatting
19+
run: cargo fmt --check
20+
- name: Clippy
21+
run: cargo clippy

0 commit comments

Comments
 (0)