upleb.uk

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

summaryrefslogtreecommitdiff
path: root/.github/workflows/check_rustfmt_clippy.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/check_rustfmt_clippy.yaml')
-rw-r--r--.github/workflows/check_rustfmt_clippy.yaml26
1 files changed, 0 insertions, 26 deletions
diff --git a/.github/workflows/check_rustfmt_clippy.yaml b/.github/workflows/check_rustfmt_clippy.yaml
deleted file mode 100644
index eec744e..0000000
--- a/.github/workflows/check_rustfmt_clippy.yaml
+++ /dev/null
@@ -1,26 +0,0 @@
1on: push
2
3name: check rustfmt
4
5jobs:
6 ci:
7 runs-on: ubuntu-latest
8 strategy:
9 matrix:
10 rust:
11 - nightly
12
13 steps:
14 - uses: actions/checkout@v2
15
16 - uses: actions-rs/toolchain@v1
17 with:
18 profile: minimal
19 toolchain: ${{ matrix.rust }}
20 override: true
21 components: rustfmt
22
23 - uses: actions-rs/cargo@v1
24 with:
25 command: fmt
26 args: --all -- --check