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 622bb92 commit a57d85aCopy full SHA for a57d85a
.github/workflows/solana.yml
@@ -144,3 +144,23 @@ jobs:
144
- name: make anchor-test-upgrade
145
run: make anchor-test-upgrade
146
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
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
0 commit comments