chore: fix missing anchor test #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build and test program' | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Solana Anchor build' | |
uses: metadaoproject/setup-anchor@v2 | |
with: | |
anchor-version: '0.29.0' | |
solana-cli-version: '1.17.15' | |
node-version: '20.10.0' | |
- uses: ./.github/actions/install | |
- run: anchor build | |
- run: anchor test --provider.wallet THIS_IS_A_TEST_KEY.json --skip-build |