From 23ac5089a76a8dbeab597350ecdb718f662098ac Mon Sep 17 00:00:00 2001 From: ChristianVisintin Date: Sat, 12 Dec 2020 12:17:33 +0100 Subject: [PATCH] Added clippy to workflows --- .github/workflows/linux.yml | 2 ++ .github/workflows/macos.yml | 2 ++ .github/workflows/windows.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f2bc94f..ca93e9f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -16,3 +16,5 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --verbose + - name: Clippy + run: cargo clippy diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index cbfd1c2..69fccc7 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -16,3 +16,5 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --verbose + - name: Clippy + run: cargo clippy diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index a786916..37495a7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -16,3 +16,5 @@ jobs: run: cargo build --verbose - name: Run tests run: cargo test --verbose + - name: Clippy + run: cargo clippy