Add the possibility to put more weight to EOS (except classif) #612
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*] | |
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 |