File tree 3 files changed +39
-0
lines changed
3 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ github : [randomairborne]
Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " cargo"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " monthly"
7
+ - package-ecosystem : " github-actions"
8
+ directory : " /"
9
+ schedule :
10
+ interval : " monthly"
Original file line number Diff line number Diff line change
1
+ name : Cargo Check
2
+ on :
3
+ push :
4
+ pull_request :
5
+ workflow_dispatch :
6
+ workflow_call :
7
+
8
+ jobs :
9
+ check :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+
14
+ - uses : dtolnay/rust-toolchain@stable
15
+ with :
16
+ components : rustfmt, clippy
17
+
18
+ - name : Cache Packages
19
+ uses : Swatinem/rust-cache@v2
20
+
21
+ - name : Check formatting
22
+ run : cargo fmt --check
23
+
24
+ - name : Check build
25
+ run : cargo clippy
26
+
27
+ - name : Run tests
28
+ run : cargo test
You can’t perform that action at this time.
0 commit comments