aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/lints.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/lints.yml')
-rw-r--r--.github/workflows/lints.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.github/workflows/lints.yml b/.github/workflows/lints.yml
deleted file mode 100644
index 39133dd..0000000
--- a/.github/workflows/lints.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-on: [push, pull_request]
-
-name: Lints
-
-jobs:
- clippy:
- name: Clippy
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions-rs/toolchain@v1
- with:
- profile: minimal
- toolchain: nightly
- override: true
- components: rustfmt, clippy
- - uses: actions-rs/cargo@v1
- with:
- command: fmt
- args: --all -- --check
- - uses: actions-rs/cargo@v1
- with:
- command: clippy
- args: --all --examples --features=std -- -D warnings
- # don't forget the no_std example!
- - uses: actions-rs/cargo@v1
- with:
- command: fmt
- args: --manifest-path example_no_std/Cargo.toml
- - uses: actions-rs/cargo@v1
- with:
- command: clippy
- args: --manifest-path example_no_std/Cargo.toml