Skip to content

Commit

Permalink
feat(0.9.0): release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRustifyer committed May 25, 2024
1 parent b7131db commit 2399c37
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
components: clippy

- name: Verifiying the code quality with Clippy
working-directory: zork++
run: |
cd zork++
cargo clippy --all-targets --all-features
rustfmt:
Expand All @@ -42,11 +42,25 @@ jobs:
components: rustfmt

- name: Checking the format sanity of the project
working-directory: zork++
run: |
cd zork++
cargo fmt --all -- --check
unit-and-doc-tests:
name: Verify code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Caching project dependencies
id: project-cache
uses: Swatinem/rust-cache@v2

- uses: hecrj/setup-rust-action@v2
with:
components: rustfmt

- name: Run Unit and Doc tests
working-directory: zork++
run: |
cargo test --workspace --lib --color=always --no-fail-fast
cargo test --workspace --doc --color=always --no-fail-fast

0 comments on commit 2399c37

Please sign in to comment.