Skip to content

Commit

Permalink
Try running tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thebeanogamer committed Jan 2, 2024
1 parent a7a072c commit 86620d2
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run Tests

on: push

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout Multisig Repository
uses: actions/checkout@v2

- name: Checkout Solana
uses: actions/checkout@v4
with:
repository: solana-labs/solana
ref: 'v1.16.24'
path: 'solana'

- name: Add Solana to Path
run: echo "`pwd`/solana" >> $GITHUB_PATH

- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'

- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Run Tests
run: npm run test

0 comments on commit 86620d2

Please sign in to comment.