forked from coral-xyz/multisig
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 896 Bytes
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Run Tests
on: push
jobs:
test:
runs-on: ubuntu-2204-4core
steps:
- name: Tell me things about where I'm running
run: |
set -x
cat /etc/security/limits.conf
ulimit -a
cat /proc/sys/kernel/pid_max
sysctl -a
# - 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
#
# - name: Setup Node 20
# uses: actions/setup-node@v4
# with:
# node-version: '20'
# cache: 'npm'
#
# - name: Setup Rust
# uses: dtolnay/rust-toolchain@stable
#
# - name: Run Tests
# run: npm run test