Skip to content

Commit

Permalink
CI: print versions of tools from rust toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
muzarski committed Jun 12, 2024
1 parent 4b1eca9 commit 5e51b13
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,16 @@ jobs:
run: |
sudo sh -c "echo 2097152 >> /proc/sys/fs/aio-max-nr"
docker compose -f test/cluster/docker-compose.yml up -d --wait
- name: Print rustc version
run: rustc --version
- name: Print rustfmt version
run: cargo fmt --version
- name: Print clippy version
run: cargo clippy --version
- name: Format check
run: cargo fmt --verbose --all -- --check
- name: Cargo clean
run: cargo clean
- name: Clippy check
run: cargo clippy --verbose --all-targets
- name: Clippy check with all features
Expand Down

0 comments on commit 5e51b13

Please sign in to comment.