File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 29
29
with :
30
30
packages : libgtk-3-dev libsoup-3.0-dev libjavascriptcoregtk-4.1-dev libwebkit2gtk-4.1-dev
31
31
version : 1.0
32
- - name : Run clippy
33
- run : cargo clippy --all --tests -- -Dwarnings
34
- - name : Check formatting
35
- run : cargo fmt --all --check
32
+ - run : npm run check-rs
Original file line number Diff line number Diff line change 8
8
"start" : " vite" ,
9
9
"build" : " vite build" ,
10
10
"preview" : " vite preview" ,
11
- "check" : " scripts/check" ,
11
+ "check" : " scripts/check-js" ,
12
+ "check-rs" : " scripts/check-rs" ,
12
13
"format" : " npx prettier '**/*.@(ts|js|svelte|json|css|html|yml)' --write" ,
13
14
"tauri" : " npx tauri"
14
15
},
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e
3
+
4
+ cargo check --manifest-path ./src-tauri/Cargo.toml
5
+ cargo clippy --manifest-path ./src-tauri/Cargo.toml -- -Dwarnings
6
+ cargo fmt --manifest-path ./src-tauri/Cargo.toml --check
You can’t perform that action at this time.
0 commit comments