Skip to content

Use latest Sphinx

Use latest Sphinx #14

Workflow file for this run

name: Unit Test
on: [push, pull_request]
permissions:
contents: read
jobs:
python-unittest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# Fixing to macos-13 due to https://github.com/actions/setup-python/issues/850
os: [ubuntu-latest, macos-13, windows-latest]
python-version: [3.9, '3.10', '3.11']
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
python -m pip install --upgrade pip
python -m pip install ".[dev]"
- name: Playwright install
run: playwright install
- name: Run unittest
run: pytest