From 927f5aa5b1a144923a3789682bef30f1af8ff1d0 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 30 Sep 2021 08:16:48 -0400 Subject: [PATCH] Create clippy.yml --- .github/workflows/clippy.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/clippy.yml diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml new file mode 100644 index 0000000..d4a6773 --- /dev/null +++ b/.github/workflows/clippy.yml @@ -0,0 +1,12 @@ +on: push +name: Clippy check +jobs: + clippy_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/toolchain@v1 + - uses: actions-rs/clippy-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --all-features