Skip to content

Commit a57d85a

Browse files
committed
added github workflow
1 parent 622bb92 commit a57d85a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/solana.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,23 @@ jobs:
144144
- name: make anchor-test-upgrade
145145
run: make anchor-test-upgrade
146146
working-directory: ./solana
147+
make-test-sbf:
148+
name: make test-sbf
149+
runs-on: ubuntu-latest
150+
steps:
151+
- uses: actions/checkout@v4
152+
with:
153+
submodules: true
154+
- name: Install toolchain
155+
uses: dtolnay/rust-toolchain@master
156+
with:
157+
toolchain: ${{ env.RUSTC_VERSION }}
158+
- name: Git Submodule Update
159+
run: |
160+
git config --global user.email "[email protected]"
161+
git config --global user.name "GitHub Actions"
162+
git submodule update --init --recursive
163+
working-directory: ./solana
164+
- name: make test-sbf
165+
run: make test-sbf
166+
working-directory: ./solana

0 commit comments

Comments
 (0)