fix copy paste mistake

pull/45/head
Fabian-Lars 2 years ago committed by GitHub
parent 105bc664da
commit 3d4679a9ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,16 +42,16 @@ jobs:
- uses: Swatinem/rust-cache@v1 - uses: Swatinem/rust-cache@v1
- name: clippy - name: clippy
run: --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features -- -D warnings run: cargo clippy --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features -- -D warnings
- name: clippy sql:sqlite - name: clippy sql:sqlite
run: --workspace --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features sqlite -- -D warnings
- name: clippy sql:mysql - name: clippy sql:mysql
run: --workspace --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features mysql -- -D warnings
- name: clippy sql:postgres - name: clippy sql:postgres
run: --workspace --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings run: cargo clippy --workspace --package 'tauri-plugin-sql' --all-targets --features postgres -- -D warnings
fmt: fmt:
runs-on: ubuntu-latest runs-on: ubuntu-latest

Loading…
Cancel
Save