We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6a4ab2 commit e0baf14Copy full SHA for e0baf14
staged/.github/workflows/ci.yml .github/workflows/staged-ci.ymlstaged/.github/workflows/ci.yml renamed to .github/workflows/staged-ci.yml
@@ -1,14 +1,22 @@
1
-name: CI
+name: Staged CI
2
3
on:
4
pull_request:
5
branches: [main]
6
+ paths:
7
+ - "staged/**"
8
push:
9
10
11
12
13
env:
14
CARGO_TERM_COLOR: always
15
16
+defaults:
17
+ run:
18
+ working-directory: staged
19
+
20
jobs:
21
check:
22
name: Check
@@ -18,11 +26,13 @@ jobs:
26
27
# Install hermit (manages node, rust, just)
28
- uses: cashapp/activate-hermit@v1
29
+ with:
30
31
32
# Cache Cargo dependencies
23
33
- uses: Swatinem/rust-cache@v2
24
34
with:
25
- workspaces: src-tauri
35
+ workspaces: staged/src-tauri
36
37
# Install system dependencies for Tauri (Linux)
38
- name: Install Tauri dependencies (Linux)
0 commit comments