Skip to content

Rename learning type to learning scheme #76

Rename learning type to learning scheme

Rename learning type to learning scheme #76

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black pytest
pip install -r requirements.txt
pip install .
- name: Check code style with Black
run: |
black -l 80 --check emmio tests
- name: Test with pytest
run: |
pytest -v