Skip to content

chore: upgrade docusaurus to v3 and other related changes #111

chore: upgrade docusaurus to v3 and other related changes

chore: upgrade docusaurus to v3 and other related changes #111

Workflow file for this run

name: Python tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Install Python 3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python3 -m unittest tests.py