upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-01-23 00:00:00 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2024-01-23 00:00:00 +0000
commitd5485791b02e82a70631d6e3dafc77b95e2546a0 (patch)
treef4392d0196f71d26ad0ab95d81dcbe1690891a0f /.github/workflows
parente212d5c62fb8a053c1cde4003845a0212aa3f428 (diff)
build: temporarily disable clippy in ci
because ironically the verision used in the nix setup differs from the one used in the github action perhaps a rewrite of the the github to use nix is needed
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/check_rustfmt_clippy.yaml9
1 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/check_rustfmt_clippy.yaml b/.github/workflows/check_rustfmt_clippy.yaml
index 3259491..eec744e 100644
--- a/.github/workflows/check_rustfmt_clippy.yaml
+++ b/.github/workflows/check_rustfmt_clippy.yaml
@@ -1,6 +1,6 @@
1on: push 1on: push
2 2
3name: check rustfmt clippy 3name: check rustfmt
4 4
5jobs: 5jobs:
6 ci: 6 ci:
@@ -18,14 +18,9 @@ jobs:
18 profile: minimal 18 profile: minimal
19 toolchain: ${{ matrix.rust }} 19 toolchain: ${{ matrix.rust }}
20 override: true 20 override: true
21 components: rustfmt, clippy 21 components: rustfmt
22 22
23 - uses: actions-rs/cargo@v1 23 - uses: actions-rs/cargo@v1
24 with: 24 with:
25 command: fmt 25 command: fmt
26 args: --all -- --check 26 args: --all -- --check
27
28 - uses: actions-rs/cargo@v1
29 with:
30 command: clippy
31 args: -- -D warnings