We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ad1d3 commit 9c03c5cCopy full SHA for 9c03c5c
.github/workflows/rust.yml
@@ -16,7 +16,11 @@ jobs:
16
steps:
17
- uses: actions/checkout@v3
18
- run: sudo apt-get update && sudo apt-get install -y libclang-dev libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev && sudo apt-get install libudev-dev && cargo install cargo-bundle
19
- - name: Build
20
- run: cargo build --verbose
+ - name: Check
+ run: cargo check --verbose
21
+ - name: Format
22
+ run: cargo fmt --all -- --check --verbose
23
+ - name: Clippy
24
+ run: cargo clippy -- -D warnings --verbose
25
- name: Run tests
26
run: cargo test --verbose
0 commit comments