From ec85eb7cf22ce6d6bbfeccc1eeeddeefbd0b176d Mon Sep 17 00:00:00 2001 From: "fosdick.io" <67963637+fosdickio@users.noreply.github.com> Date: Wed, 7 Feb 2024 10:22:05 -0700 Subject: [PATCH] Applying @nhatcher's review feedback. --- .github/workflows/deploy-cargo-docs.yaml | 2 +- .github/workflows/rust-build-test.yaml | 7 ++----- Makefile | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/deploy-cargo-docs.yaml b/.github/workflows/deploy-cargo-docs.yaml index 9f6a2c6..34f8362 100644 --- a/.github/workflows/deploy-cargo-docs.yaml +++ b/.github/workflows/deploy-cargo-docs.yaml @@ -20,7 +20,7 @@ jobs: override: true - name: Generate Documentation - run: cargo doc --no-deps + run: make docs - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 diff --git a/.github/workflows/rust-build-test.yaml b/.github/workflows/rust-build-test.yaml index 71a161a..468b711 100644 --- a/.github/workflows/rust-build-test.yaml +++ b/.github/workflows/rust-build-test.yaml @@ -19,8 +19,5 @@ jobs: - name: Build run: cargo build --release --verbose - - name: Run tests - run: cargo test --verbose - - - name: Linting - run: make lint + - name: Linting and testing + run: make tests diff --git a/Makefile b/Makefile index ecfc3f7..ac31afb 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ format: cargo fmt tests: lint - cargo test + cargo test --verbose clean: cargo clean