WIP - ActixWeb multi-tenant blog and newsletter API server. Originally forked from LukeMathWalker/zero-to-production.

add clippy workflow config

+31
+31
.tangled/workflows/clippy.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + 7 + clone: 8 + skip: false 9 + depth: 1 10 + submodules: false 11 + 12 + dependencies: 13 + nixpkgs: 14 + - gcc 15 + - clang 16 + - lld 17 + - rustup 18 + - pkg-config 19 + - openssl 20 + 21 + steps: 22 + - name: Use current cargo version 23 + command: | 24 + rustup default stable 25 + - name: Install nix-env 26 + command: nix-env --install 27 + - name: Use development environment 28 + command: nix-shell -p openssl 29 + - name: Run linter 30 + command: | 31 + cargo clippy -- -D warnings