Skip to content

cppe5 config

cppe5 config #853

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: [single-gpu, nvidia-gpu, a10, ci]
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