Skip to content

fix ci

fix ci #8

Workflow file for this run

---
name: Solana_Build
on: [push]
jobs:
Test:
runs-on: [ubuntu-22.04]
env:
RUST_VERSION: 1.77.0
SOLANA_VERSION: 1.18.8
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
override: true
components: rustfmt, clippy
- name: Install Solana
uses: metadaoproject/[email protected]
with:
solana-cli-version: ${{ env.SOLANA_VERSION }}
- name: Check Solana Version
run: |
solana --version
solana config set --url localhost
- name: Install anchor
run: npm i -g @project-serum/[email protected]
- name: Build
run: anchor build
- name: Build
run: anchor test