diff options
Diffstat (limited to '.github/workflows/check_rustfmt_clippy.yaml')
| -rw-r--r-- | .github/workflows/check_rustfmt_clippy.yaml | 26 |
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 @@ | |||
| 1 | on: push | ||
| 2 | |||
| 3 | name: check rustfmt | ||
| 4 | |||
| 5 | jobs: | ||
| 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 | ||