chore: switch to stable rust versions #610
Workflow file for this run
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: Test Solana Contract | |
on: | |
pull_request: | |
paths: | |
- target_chains/solana/** | |
- pythnet/pythnet_sdk/** | |
push: | |
branches: | |
- main | |
paths: | |
- target_chains/solana/** | |
- pythnet/pythnet_sdk/** | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: target_chains/solana | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.73.0 | |
override: true | |
- name: Install Solana | |
run: | | |
sh -c "$(curl -sSfL https://release.solana.com/v1.16.20/install)" | |
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: Build | |
run: cargo-build-sbf | |
- name: Run tests | |
run: cargo-test-sbf | |
- name: Run sdk tests | |
run: cargo test --package pyth-solana-receiver-sdk |