Skip to content

Tidy content index parser #312

Tidy content index parser

Tidy content index parser #312

Workflow file for this run

name: Project Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
cache: pip
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
- name: Run unit tests
run: python -m unittest discover -s tests