Skip to content

Merge pull request #93 from online-ml/dev_layer_adaptation #213

Merge pull request #93 from online-ml/dev_layer_adaptation

Merge pull request #93 from online-ml/dev_layer_adaptation #213

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.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Cache Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python }}-pip-
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -e ".[dev]" codecov
- name: Download datasets
run: python -c "from river import datasets; datasets.CreditCard().download(); datasets.Elec2().download(); datasets.Keystroke().download()"
- name: pytest
run: pytest --cov=deep_river -m "not datasets"
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v2