Skip to content

Commit b851a23

Browse files
author
Bengt Lofgren
committed
workflow recurses submodule
1 parent 2f4b49f commit b851a23

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/solana.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,18 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v4
32+
with:
33+
submodules: true
3234
- name: Install toolchain
3335
uses: dtolnay/rust-toolchain@master
3436
with:
3537
toolchain: ${{ env.RUSTC_VERSION }}
38+
- name: Git Submodule Update
39+
run: |
40+
git config --global user.email "[email protected]"
41+
git config --global user.name "GitHub Actions"
42+
git submodule update --init --recursive
43+
working-directory: ./solana
3644
- name: make cargo-test-all
3745
run: make cargo-test-all
3846
working-directory: ./solana

0 commit comments

Comments
 (0)