diff options
author | Blaž Hrastnik | 2020-09-12 10:35:26 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-09-12 10:35:26 +0000 |
commit | ee430536a43bb7b51cd857d43a3c9279845b107b (patch) | |
tree | a8feea5e8e6ddc8a0b036aea2b9a0061d05e2d4e /.github | |
parent | a106be94f140918fa392bea660a87197b66390f0 (diff) |
Checkout submodules on clone.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index c73370ab..29e7bd47 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + with: + submodules: true - name: Install stable toolchain uses: actions-rs/toolchain@v1 @@ -52,6 +54,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + with: + submodules: true - name: Install stable toolchain uses: actions-rs/toolchain@v1 @@ -89,6 +93,8 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + with: + submodules: true - name: Install stable toolchain uses: actions-rs/toolchain@v1 |