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
95241ec8
e5042e79
1/2
clippy.yml
failed
15s
format.yml
success
15s
+31
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
clippy.yml
+31
.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: Install nix-env
26
26
+
command: nix-env --install
27
27
+
- name: Use development environment
28
28
+
command: NIX_PATH="openssl=/bin/openssl" nix-shell -p openssl
29
29
+
- name: Run linter
30
30
+
command: |
31
31
+
cargo clippy -- -D warnings