Skip to content

v0.0.9 updated from AIOS #36

v0.0.9 updated from AIOS

v0.0.9 updated from AIOS #36

Workflow file for this run

name: CI
on:
[push,pull_request]
jobs:
run-pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest -v tests