Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,14 @@ jobs:
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt || echo "No requirements.txt; skipping"
pip install numpy pandas statsmodels matplotlib scipy
if [ -f requirements.txt ]; then pip install -r requirements.txt; else pip install numpy pandas statsmodels matplotlib scipy; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi

- name: Lint
run: make lint

- name: Tests
run: make test

- name: Tiny Chapter 13 smoke
run: make ch13-ci
Expand Down
Loading