From cd6f6aa92daf999ca6f166ae18fb2a3b3e17dcda Mon Sep 17 00:00:00 2001 From: Hergy Fongue Date: Thu, 18 Jan 2024 21:42:27 +0100 Subject: [PATCH] get rid of Makefile for the moment Signed-off-by: Hergy Fongue --- .github/workflows/linter.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index 159fc3b..0fa68f8 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -40,7 +40,7 @@ jobs: uses: wagoid/commitlint-github-action@v5.4.5 lint_check: - name: Rust - lint_${{ matrix.lint_projects }} + name: Rust - lint_all runs-on: ubuntu-22.04 strategy: fail-fast: false @@ -75,6 +75,10 @@ jobs: run: cargo --version - name: Format run: cargo fmt --all -- --check - - name: Run lint ${{ matrix.lint_projects }} - run: make -f Makefile lint_${{ matrix.lint_projects }} + - name: Clippy + run: cargo clippy --verbose -- -D warnings + - name: Check Cargo.toml files + run: cargo check --workspace --all-targets --all-features +# - name: Check Cargo deny +# run: cargo deny check licenses