forked from online-ml/river
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (40 loc) · 1.14 KB
/
branch-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: branch-tests
on:
pull_request:
branches:
- "*"
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9]
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: Cache datasets
uses: actions/cache@v2
with:
path: ~/river_data
key: ${{ runner.os }}
- name: Download datasets
run: python -c "from river import datasets; datasets.CreditCard().download()"
- name: pytest
run: pytest --cov=river
- name: codecov
run: codecov