Skip to content

FIx RTD theme

FIx RTD theme #47

Workflow file for this run

name: Tests
on:
push:
branches: [ main ] # run when anything is pushed to these branches
pull_request:
branches: [ main ] # run for the code submitted as a PR to these branches
# jobs are a series of steps which run commands in the chosen virtualized environment to perform some action
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
python-version: ["3.10", "3.11"]
steps:
# first step checks out the code into
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "pyproject.toml"
# Install the requirements for this library plus those for running our tests
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox
# Using Codecov's action, upload the coverage report for the triggering commit/PR
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
files: coverage.xml
fail_ci_if_error: true
verbose: true