Skip to content

Commit a2751f1

Browse files
authored
Update sphinx.yml
1 parent 85f5026 commit a2751f1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/sphinx.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ jobs:
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v1
13+
1314
- name: Add packages
1415
run: |
1516
sudo apt-get install texlive-latex-recommended texlive-fonts-recommended texlive-latex-extra cm-super dvipng
17+
1618
- name: Cache conda
1719
uses: actions/cache@v2
1820
env:
@@ -22,20 +24,28 @@ jobs:
2224
path: ~/conda_pkgs_dir
2325
key:
2426
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('requirements.txt') }}
27+
2528
- uses: conda-incubator/setup-miniconda@v2
2629
with:
2730
auto-update-conda: true
2831
python-version: 3.7
2932
use-only-tar-bz2: true
33+
3034
- name: Install dependencies
3135
shell: bash -l {0}
3236
run: |
3337
conda install --yes -c conda-forge --file requirements.txt
3438
pip install nose-timer
39+
40+
- name: Run nosetest
41+
run: |
42+
nosetests -v --with-timer --with-coverage --cover-erase --cover-inclusive --cover-package=pySDC/core,pySDC/implementations,pySDC/helpers,pySDC/tutorial,pySDC/projects --cover-html --cover-html-dir=doc/build/test_coverage pySDC/tests
43+
3544
- name: Build
3645
uses: ammaraskar/sphinx-action@master
3746
with:
3847
docs-folder: "docs/"
48+
3949
- name: Deploy 🚀
4050
uses: JamesIves/[email protected]
4151
if: ${{ github.event_name == 'push' }}

0 commit comments

Comments
 (0)