There was an error while loading. Please reload this page.
1 parent 5351c9a commit 5522a8dCopy full SHA for 5522a8d
1 file changed
.github/workflows/rust.yml
@@ -2,6 +2,12 @@ name: Rust
2
3
on:
4
workflow_call:
5
+ inputs:
6
+ submodules:
7
+ description: 'Enable git submodules checkout'
8
+ required: false
9
+ type: boolean
10
+ default: false
11
12
env:
13
CARGO_TERM_COLOR: always
@@ -12,6 +18,8 @@ jobs:
18
19
steps:
14
20
- uses: actions/checkout@v6
21
+ with:
22
+ submodules: ${{ inputs.submodules }}
15
23
- name: Build
16
24
run: cargo build --verbose
17
25
- name: Run tests
0 commit comments