blob: 79560db2d09baf691b5ee6afe7279c87e43fcaed [file]
name: Check documentation build
on:
push:
branches: [master, 'release*']
tags: ['*']
pull_request:
paths:
- 'docs/**'
- 'mypyc/doc/**'
- '**/*.rst'
- '**/*.md'
- CREDITS
- LICENSE
jobs:
docs:
runs-on: ubuntu-latest
env:
TOXENV: docs
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install tox
run: pip install --upgrade 'setuptools!=50' 'virtualenv>=20.6.0' tox==3.24.5
- name: Setup tox environment
run: tox -e ${{ env.TOXENV }} --notest
- name: Test
run: tox -e ${{ env.TOXENV }} --skip-pkg-install