Merge pull request #1387 from Luni-4/ci-improvements

CI improvements
This commit is contained in:
Héctor Ramón 2022-07-15 01:35:23 +02:00 committed by GitHub
commit 61fd5b0050
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -9,4 +9,4 @@ jobs:
components: rustfmt
- uses: actions/checkout@master
- name: Check format
run: cargo fmt --all -- --check
run: cargo fmt --all -- --check --verbose

View file

@ -9,4 +9,4 @@ jobs:
components: clippy
- uses: actions/checkout@master
- name: Check lints
run: cargo clippy --all --all-features --no-deps
run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings

View file

@ -20,8 +20,8 @@ jobs:
sudo apt-get install -y libxkbcommon-dev
- name: Run tests
run: |
cargo test --verbose --all
cargo test --verbose --all --all-features
cargo test --verbose --workspace
cargo test --verbose --workspace --all-features
web:
runs-on: ubuntu-latest