From a90304363d5add5c8197ff44f79b12f3eb581edf Mon Sep 17 00:00:00 2001 From: Brad Langhorst Date: Sat, 10 Feb 2024 16:31:50 -0500 Subject: [PATCH] more checks for github actions --- .github/workflows/rust.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8760c17..99ccc7d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -10,7 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: taiki-e/install-action@cargo-llvm-cov@v2 - name: Build run: cargo build --verbose - - name: Run Tests - run: cargo test --verbose \ No newline at end of file + - name: Run tests + run: cargo test --verbose + - name: Check code style + run: cargo clippy -- -D warnings + - name: Check code coverage + run: cargo llvm-cov --html --verbose \ No newline at end of file