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 97bc0fb commit e0a036fCopy full SHA for e0a036f
.github/workflows/solana.yml
@@ -126,6 +126,8 @@ jobs:
126
runs-on: ubuntu-latest
127
steps:
128
- uses: actions/checkout@v4
129
+ with:
130
+ submodules: true
131
- name: Install Foundry
132
uses: foundry-rs/foundry-toolchain@v1
133
with:
@@ -138,6 +140,12 @@ jobs:
138
140
- name: Set default Rust toolchain
139
141
run: rustup default stable
142
working-directory: ./solana
143
+ - name: Git Submodule Update
144
+ run: |
145
+ git config --global user.email "[email protected]"
146
+ git config --global user.name "GitHub Actions"
147
+ git submodule update --init --recursive
148
+ working-directory: ./solana
149
- name: make anchor-test-upgrade
150
run: make anchor-test-upgrade
151
0 commit comments