feat: add ix builder logic for building GMP ix from payload data (#606) #8
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
RUSTFLAGS: -D warnings | |
CARGO_TERM_COLOR: always | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: solana | |
shell: bash | |
name: test | |
jobs: | |
test: | |
runs-on: self-hosted | |
name: test | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Setup repo | |
uses: ./.github/actions/setup-repo | |
with: | |
rust-cache: "buildjet" | |
- name: cargo xtask test | |
run: cargo xtask test |