update sdk #57
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: tests | |
env: | |
cli-id: anchor-v0.30.1-solana-1.18.10 | |
on: | |
pull_request: | |
branches: | |
- 'staging' | |
jobs: | |
setup-tests: | |
runs-on: ubicloud-standard-16 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- id: cache-cli-deps | |
uses: actions/cache@v2 | |
with: | |
key: $${{ env.cli-id }} | |
path: | | |
~/.local/share/solana | |
~/.cargo/bin/anchor | |
- id: install-os-deps | |
if: steps.cache-cli-deps.outputs.cache-hit != 'true' | |
run: sudo apt-get update && sudo apt-get install -y pkg-config build-essential libudev-dev | |
- id: install-solana-tools | |
if: steps.cache-cli-deps.outputs.cache-hit != 'true' | |
run: sh -c "$(curl -sSfL https://release.solana.com/v1.18.8/install)" | |
- run: echo "PATH=$HOME/.local/share/solana/install/active_release/bin:$PATH" >> $GITHUB_ENV | |
- id: install-anchor-cli | |
if: steps.cache-cli-deps.outputs.cache-hit != 'true' | |
run: cargo install --git https://github.com/bridgesplit/anchor anchor-cli | |
run-tests: | |
runs-on: ubicloud-standard-16 | |
needs: [setup-tests] | |
steps: | |
- id: cache-cli-deps | |
uses: actions/cache@v2 | |
with: | |
key: $${{ env.cli-id }} | |
path: | | |
~/.local/share/solana | |
~/.cargo/bin/anchor | |
- id: install-os-deps | |
run: sudo apt-get update && sudo apt-get install -y pkg-config build-essential libudev-dev | |
- run: echo "PATH=$HOME/.local/share/solana/install/active_release/bin:$HOME/.cargo/bin:$PATH" >> $GITHUB_ENV | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: cd clients/rwa-token-sdk && yarn install | |
- run: cd clients/rwa-token-sdk && yarn lint | |
- run: solana-keygen new --no-bip39-passphrase | |
- run: cd programs && cargo fmt -- --check | |
- run: cd programs && cargo clippy -- -D warnings | |
- run: cd programs && anchor build | |
- run: cd programs && anchor test |