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