Skip to content

bigz/add-perp--orders-tests (#37) #211

bigz/add-perp--orders-tests (#37)

bigz/add-perp--orders-tests (#37) #211

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
solana_verion: 1.14.7
anchor_version: 0.26.0
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo.
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Cache Solana Tool Suite
uses: actions/cache@v2
id: cache-solana
with:
path: |
~/.cache/solana/
~/.local/share/solana/
key: solana-${{ runner.os }}-v0000-${{ env.solana_verion }}
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: Install Solana
if: steps.cache-solana.outputs.cache-hit != 'true'
run: sh -c "$(curl -sSfL https://release.solana.com/v${{ env.solana_verion }}/install)"
- name: Add Solana to path
run: echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
- uses: actions/setup-node@v2
with:
node-version: '17'
- name: install Anchor CLI
run: npm install -g @project-serum/anchor-cli
- name: Generate local keypair
run: yes | solana-keygen new
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.10
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist (todo)
#----------------------------------------------
- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
#----------------------------------------------
# install your root project
#----------------------------------------------
- name: Install library
run: poetry install --no-interaction
#----------------------------------------------
# install nox-poetry
#----------------------------------------------
- name: Install nox-poetry
run: pip install nox-poetry
#----------------------------------------------
# run linters
#----------------------------------------------
- name: Run linters
run: make lint
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests
run: make test