mirror of
https://github.com/uniwhale-io/pyth-crosschain.git
synced 2026-01-12 22:45:37 +08:00
* Move price-service to price_service * Update references to price-service * Rename target-chains to target_chains * Update references to target-chains * Rename tilt-devnet to tilt_devnet * Update references to tilt-devnet * Rename wormhole-attester to wormhole_attester * Update references to wormhole-attester * Rename multisig-wh-message-builder * Update references to wh-msg-bldr * Fix dockerfile issue * Rename remove-executor to remote_executor * Update references to remote-executor * Rename xc-governance-sdk-js * Update references to the governance sdk * Move docker-images to docker_images * Update references to docker-images
26 lines
762 B
YAML
26 lines
762 B
YAML
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: nightly
|
|
components: rustfmt, clippy
|
|
- name: Install Solana
|
|
run: |
|
|
sh -c "$(curl -sSfL https://release.solana.com/stable/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
|