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: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
- run: cargo clippy
- run: cargo test
- run: cargo clippy --all-features
- run: cargo test --all-features

test_lib_windows:
name: Build and test library (Windows)
Expand All @@ -34,8 +34,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check
- run: cargo clippy
- run: cargo test
- run: cargo clippy --all-features
- run: cargo test --all-features

build_app_linux:
name: Build Linux application
Expand Down
Loading