Skip to content

Commit e0a036f

Browse files
author
Bengt Lofgren
committed
added workflow and idl
1 parent 97bc0fb commit e0a036f

File tree

3 files changed

+956
-2
lines changed

3 files changed

+956
-2
lines changed

.github/workflows/solana.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ jobs:
126126
runs-on: ubuntu-latest
127127
steps:
128128
- uses: actions/checkout@v4
129+
with:
130+
submodules: true
129131
- name: Install Foundry
130132
uses: foundry-rs/foundry-toolchain@v1
131133
with:
@@ -138,6 +140,12 @@ jobs:
138140
- name: Set default Rust toolchain
139141
run: rustup default stable
140142
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
141149
- name: make anchor-test-upgrade
142150
run: make anchor-test-upgrade
143151
working-directory: ./solana

0 commit comments

Comments
 (0)