fix: attribute iter ci #418
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: Solana SDK | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./pyth-sdk-solana | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install libudev-dev protobuf-compiler | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
test-contract: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./pyth-sdk-solana/test-contract | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install libudev-dev protobuf-compiler | |
- name: Install Solana Binaries | |
run: | | |
sh -c "$(curl -sSfL https://release.solana.com/v1.18.21/install)" | |
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Build SBF | |
run: cargo build-sbf --verbose | |
- name: Run SBF tests | |
run: cargo test-sbf --verbose |