[solana-receiver-cli] Add logic to receive VAAs with the new Wormhole receiver #2
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: Check Remote Executor | |
on: | |
pull_request: | |
paths: [governance/remote_executor/**] | |
push: | |
branches: [main] | |
paths: [governance/remote_executor/**] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.66.1 | |
components: rustfmt, clippy | |
override: true | |
- name: Install Solana | |
run: | | |
sh -c "$(curl -sSfL https://release.solana.com/v1.14.18/install)" | |
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: Run executor tests | |
run: cargo test-bpf --manifest-path ./governance/remote_executor/Cargo.toml |