Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ jobs:
- name: Build project
run: cargo build --verbose

# Check the formatting
- name: Formatting check
run: cargo fmt --check

# Check for code mistakes an possible improvements
- name: Clippy check
run: cargo clippy -- -D warnings

# Run the tests
# This command executes all tests in the project
- name: Run tests
Expand Down
Loading
Loading