We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31cd2de commit 98d70fbCopy full SHA for 98d70fb
.github/workflows/test-sparse-checkout.yml
@@ -0,0 +1,21 @@
1
+name: test-sparse-checkout
2
+on:
3
+ pull_request:
4
+ workflow_dispatch:
5
+
6
+jobs:
7
+ test-sparse-checkout:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v5
11
+ - uses: moonrepo/setup-rust@v1
12
13
14
+ with:
15
+ path: sparse-checkout-dir
16
+ sparse-checkout: |
17
+ src
18
+ - name: Run command in sparse checkout directory
19
+ run: |
20
+ cd sparse-checkout-dir
21
+ cargo run --manifest-path ../Cargo.toml -- run --mode instrumentation -- echo foo
0 commit comments