tangled
alpha
login
or
join now
diegoenriquezserrano.dev
/
api.newslt.rs
0
fork
atom
WIP - ActixWeb multi-tenant blog and newsletter API server. Originally forked from LukeMathWalker/zero-to-production.
0
fork
atom
overview
issues
pulls
1
pipelines
add clippy workflow config
diegoenriquezserrano.dev
3 weeks ago
e6d5f67a
e5042e79
2/2
clippy.yml
success
1m 20s
format.yml
success
16s
+29
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
clippy.yml
+29
.tangled/workflows/clippy.yml
···
1
1
+
when:
2
2
+
- event: ["push", "pull_request"]
3
3
+
branch: ["main"]
4
4
+
5
5
+
engine: "nixery"
6
6
+
7
7
+
clone:
8
8
+
skip: false
9
9
+
depth: 1
10
10
+
submodules: false
11
11
+
12
12
+
dependencies:
13
13
+
nixpkgs:
14
14
+
- gcc
15
15
+
- clang
16
16
+
- lld
17
17
+
- rustup
18
18
+
- pkg-config
19
19
+
- openssl
20
20
+
21
21
+
steps:
22
22
+
- name: Use current cargo version
23
23
+
command: |
24
24
+
rustup default stable
25
25
+
- name: Run clippy
26
26
+
command: |
27
27
+
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:$(nix build nixpkgs#openssl.dev --no-link --print-out-paths)/lib/pkgconfig"
28
28
+
29
29
+
cargo clippy -- -D warnings