Skip to content

Elex 2770/2771 OLS and new quantile regression #87

Elex 2770/2771 OLS and new quantile regression

Elex 2770/2771 OLS and new quantile regression #87

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run Python Tests
run: tox -e py