Skip to content

Update docs build process #713

Update docs build process

Update docs build process #713

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- main
jobs:
unit-tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
# Select the Python versions to test against
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11"]
fail-fast: true
steps:
- name: Check out the code
uses: actions/[email protected]
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Install Poetry
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1
virtualenvs-create: false
virtualenvs-in-project: false
installer-parallel: true
# Configure Poetry to use the virtual environment in the project
- name: Setup Poetry
run: |
poetry config virtualenvs.in-project true
# Install the dependencies
- name: Install Package
run: |
poetry install --with dev
- name: Check docstrings
run: |
poetry run xdoctest ./gpjax
# Run the unit tests and build the coverage report
- name: Run Tests
run: poetry run pytest -v --cov=./gpjax --cov-report=xml:./coverage.xml
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
name: gpjax
flags: unittests
env_vars: OS,PYTHON