We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd363e9 commit 76901a8Copy full SHA for 76901a8
.gitlab-ci.yml
@@ -0,0 +1,35 @@
1
+stages:
2
+ - test
3
+
4
+rust:deny:
5
+ stage: test
6
+ image: rust:1.86-alpine3.21
7
+ before_script:
8
+ - apk add cargo-deny
9
+ script:
10
+ - cargo deny check
11
12
+rust:fmt:
13
14
15
16
+ - rustup component add rustfmt
17
18
+ - cargo fmt -- --check
19
20
+rust:clippy:
21
22
23
24
+ - apk add musl-dev
25
+ - rustup component add clippy
26
27
+ - cargo clippy --all-features -- -D warnings
28
29
+rust:test:
30
31
32
33
34
35
+ - cargo test
0 commit comments