We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e069fad commit 50461a3Copy full SHA for 50461a3
Taskfile.yml
@@ -5,3 +5,18 @@ tasks:
5
desc: Download OpenAPI specification
6
cmds:
7
- curl -o openapi.yaml https://raw.githubusercontent.com/inference-gateway/inference-gateway/refs/heads/main/openapi.yaml
8
+
9
+ lint:
10
+ desc: Run linter
11
+ cmds:
12
+ - cargo fmt --all -- --check
13
14
+ analyse:
15
+ desc: Run static analysis
16
17
+ - cargo clippy --all-targets --all-features -- -D warnings
18
19
+ test:
20
+ desc: Run tests
21
22
+ - cargo test --all-targets --all-features
0 commit comments