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 2f4b49f commit b851a23Copy full SHA for b851a23
.github/workflows/solana.yml
@@ -29,10 +29,18 @@ jobs:
29
runs-on: ubuntu-latest
30
steps:
31
- uses: actions/checkout@v4
32
+ with:
33
+ submodules: true
34
- name: Install toolchain
35
uses: dtolnay/rust-toolchain@master
36
with:
37
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
44
- name: make cargo-test-all
45
run: make cargo-test-all
46
working-directory: ./solana
0 commit comments