Skip to content

Commit 490c7c7

Browse files
committed
Merge branch 'dev' of https://github.com/maks-sh/scikit-uplift into dev
2 parents 81974ac + bf94842 commit 490c7c7

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/ci-test.yml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77

88

99
jobs:
10-
build:
11-
10+
test:
11+
name: Check tests
1212
runs-on: ${{ matrix.operating-system }}
1313
strategy:
1414
matrix:
@@ -26,3 +26,23 @@ jobs:
2626
run: pip install pytest .[tests]
2727
- name: Run PyTest
2828
run: pytest
29+
30+
check_sphinx_build:
31+
name: Check Sphinx build for docs
32+
runs-on: ubuntu-latest
33+
strategy:
34+
matrix:
35+
python-version: [3.8]
36+
steps:
37+
- name: Checkout
38+
uses: actions/checkout@v2
39+
- name: Set up Python
40+
uses: actions/setup-python@v2
41+
with:
42+
python-version: ${{ matrix.python-version }}
43+
- name: Update pip
44+
run: python -m pip install --upgrade pip
45+
- name: Install dependencies
46+
run: pip install -r docs/requirements.txt
47+
- name: Run Sphinx
48+
run: sphinx-build -b html docs /tmp/_docs_build

0 commit comments

Comments
 (0)