Skip to content

Update unit-tests.yml #239

Update unit-tests.yml

Update unit-tests.yml #239

Workflow file for this run

name: unit-tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
# install & configure poetry
- name: Install Poetry
uses: snok/install-poetry@v1
with:
python-version: ${{ matrix.python }}
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
# load cached venv if cache exists
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
# install dependencies if cache does not exist
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
# install root project
- name: Install project
run: poetry install --no-interaction
- name: Download datasets
run: python -c "from river import datasets; datasets.CreditCard().download(); datasets.Elec2().download(); datasets.Keystroke().download()"
with:

Check failure on line 56 in .github/workflows/unit-tests.yml

View workflow run for this annotation

GitHub Actions / unit-tests

Invalid workflow file

The workflow is not valid. .github/workflows/unit-tests.yml (Line: 56, Col: 9): Unexpected value 'with'
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
# run test suite
- name: Run tests
run: |
export PYTHONPATH=$PWD
poetry run pytest -v --cov=deep_river -m "not datasets"
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v2