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