mirror of
https://github.com/lune-org/lune.git
synced 2025-03-04 11:11:39 +00:00
Add missing features and target flag to clippy and test in CI
This commit is contained in:
parent
505f06d973
commit
a9b60db54f
1 changed files with 8 additions and 2 deletions
10
.github/workflows/ci.yaml
vendored
10
.github/workflows/ci.yaml
vendored
|
@ -81,7 +81,13 @@ jobs:
|
||||||
--target ${{ matrix.cargo-target }}
|
--target ${{ matrix.cargo-target }}
|
||||||
|
|
||||||
- name: Lint
|
- name: Lint
|
||||||
run: cargo clippy
|
run: |
|
||||||
|
cargo clippy \
|
||||||
|
--locked --all-features \
|
||||||
|
--target ${{ matrix.cargo-target }}
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: cargo test --lib
|
run: |
|
||||||
|
cargo test \
|
||||||
|
--locked --all-features \
|
||||||
|
--target ${{ matrix.cargo-target }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue