From ce69bd29c2adec7c8148a909dc25c1c8b85d0401 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 15 Aug 2024 20:43:41 +0200 Subject: [PATCH] Add lint to workflow --- .github/workflows/rust.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fa9b871..f21e94d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,23 +2,24 @@ name: Rust on: push: - branches: [ "master" ] + branches: ["master"] pull_request: - branches: [ "master" ] + branches: ["master"] env: CARGO_TERM_COLOR: always jobs: build: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Build - run: cargo build --verbose - - name: Run tests - run: cargo test --verbose - - name: Check formatting - run: cargo fmt --check --verbose + - uses: actions/checkout@v4 + - name: Build + run: cargo build --verbose + - name: Check linting + run: cargo clippy -- -D warnings + - name: Run tests + run: cargo test --verbose + - name: Check formatting + run: cargo fmt --check --verbose