Skip to content

Liger kernel

Liger kernel #984

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- created
jobs:
tests:
name: Run unit tests
runs-on:
group: aws-g6-4xlarge-plus
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Make test
run: |
make test