We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 719a879 commit 6637b4dCopy full SHA for 6637b4d
.github/workflows/clippy_lint.yml
@@ -38,7 +38,23 @@ jobs:
38
39
- name: Install dependencies
40
run: |
41
- sudo apt install libdbus-1-dev pkg-config
+ sudo apt update
42
+ sudo apt install -y libdbus-1-dev pkg-config
43
+
44
+ - name: Install dependencies for Tauri
45
+ if: matrix.directories.path == './rustbee-gui/src-tauri'
46
+ run: |
47
+ sudo apt install -y \
48
+ libglib2.0-dev \
49
+ libwebkit2gtk-4.1-dev \
50
+ build-essential \
51
+ curl \
52
+ wget \
53
+ file \
54
+ libxdo-dev \
55
+ libssl-dev \
56
+ libayatana-appindicator3-dev \
57
+ librsvg2-dev
58
59
- name: Lint and Check every Rust dir with Clippy
60
working-directory: ${{ matrix.directories.path }}
0 commit comments