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
11 changes: 3 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
runs-on: windows-latest # matches your local environment
runs-on: windows-latest # matches your local environment
env:
PYTHONIOENCODING: utf-8
steps:
Expand All @@ -20,6 +20,7 @@ jobs:
cache: "pip"

- name: Install deps
shell: bash
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; else pip install numpy pandas statsmodels matplotlib scipy; fi
Expand All @@ -31,12 +32,6 @@ jobs:
- name: Tests
run: make test

- name: Lint
run: make lint

- name: Tests
run: make test

- name: Tiny Chapter 13 smoke
run: make ch13-ci

Expand All @@ -46,4 +41,4 @@ jobs:
with:
name: ch13-plots
path: outputs/
if-no-files-found: ignore
if-no-files-found: ignore
Loading