Remove tauri-plugin-deep-link

This commit is contained in:
Gregory Schier
2024-06-07 11:57:44 -07:00
parent 0e47622e64
commit 1c1a794c2a
2 changed files with 8 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: nightly # required for `cargo udeps`
override: true
components: rustfmt, clippy
- name: Set up cargo cache
@@ -45,4 +45,10 @@ jobs:
run: |
cargo fmt --all -- --check
cargo clippy -- -D warnings
- run: cargo test --all
- run: cargo install --locked cargo-udeps || true
- name: Check
run: |
cargo udeps
rm -rf ~/.cargo/advisory-db
- name: Test
run: cargo test --all