Skip to content

Commit 1a8be07

Browse files
committed
Checkout submodules for CI jobs that need them
1 parent bbfb952 commit 1a8be07

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@master
26+
with:
27+
submodules: true
2628
- id: install
2729
uses: actions-rs/toolchain@v1
2830
with:
@@ -146,6 +148,8 @@ jobs:
146148

147149
steps:
148150
- uses: actions/checkout@master
151+
with:
152+
submodules: true
149153
- id: install
150154
uses: actions-rs/toolchain@v1
151155
with:

.github/workflows/docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@master
11+
with:
12+
submodules: true
1113

1214
- name: Build the Docker image
1315
run: docker build -t docs-rs -f dockerfiles/Dockerfile .

0 commit comments

Comments
 (0)