Skip to content

Commit

Permalink
Export path
Browse files Browse the repository at this point in the history
  • Loading branch information
jbowa committed Apr 21, 2024
1 parent 91c6ccd commit 45ee0e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
- name: Install Solana CLI
run: |
sh -c "$(curl -sSfL https://release.solana.com/v1.18.4/install)"
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
echo 'export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"' >> $HOME/.bashrc
- name: Build
run: cargo build-bpf
run: |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
cargo build-bpf
- name: Run tests
run: cargo test --verbose

0 comments on commit 45ee0e2

Please sign in to comment.