Skip to content

MAINT: update build and CI for Sphinx 7 (#65) #159

MAINT: update build and CI for Sphinx 7 (#65)

MAINT: update build and CI for Sphinx 7 (#65) #159

Workflow file for this run

name: continuous-integration
on:
push:
branches: [main]
tags:
- 'v*'
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: pre-commit/[email protected]
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run : |
python -m pip install --upgrade pip
pip install -e.[testing]
- name: Run pytest
run: |
pytest --durations=10 --cov=sphinx_exercise --cov-report=xml --cov-report=term-missing
- name: Create cov
run: coverage xml
- name: Upload to Codecov
if: matrix.python-version == '3.11'
uses: codecov/codecov-action@v4
with:
name: sphinx-exercise-pytest-py3.11
flags: pytests
file: ./coverage.xml
fail_ci_if_error: true
docs:
name: Documentation build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[rtd]
- name: Build docs
run: |
cd docs
make clean
make html
publish:
name: Publish to PyPi
needs: [pre-commit, tests, docs]
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Build package
run: |
pip install wheel build
python -m build
- name: Publish
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_KEY }}