This commit is contained in:
Filip Tibell 2024-06-05 17:38:19 +02:00
parent 9d9f1685d8
commit 8cb7b8a13a
No known key found for this signature in database

View file

@ -88,20 +88,20 @@ jobs:
- name: Build - name: Build
run: | run: |
cargo build \ cargo build \
--workspace --workspace \
--locked --all-features \ --locked --all-features \
--target ${{ matrix.cargo-target }} --target ${{ matrix.cargo-target }}
- name: Lint - name: Lint
run: | run: |
cargo clippy \ cargo clippy \
--workspace --workspace \
--locked --all-features \ --locked --all-features \
--target ${{ matrix.cargo-target }} --target ${{ matrix.cargo-target }}
- name: Test - name: Test
run: | run: |
cargo test \ cargo test \
--lib --workspace --lib --workspace \
--locked --all-features \ --locked --all-features \
--target ${{ matrix.cargo-target }} --target ${{ matrix.cargo-target }}