Skip to content

More supervision of loss #554

More supervision of loss

More supervision of loss #554

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
# max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: [3.10.12]
requires: ['latest']
steps:
- name: Check out repository
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
# python -m pip install --upgrade --user pip
pip install pytest
pip install --upgrade pip
pip install -r requirements_github.txt
pip install -r requirements.txt
pip install .
- name: Tests
run: |
pytest -v