Skip to content

Merge pull request #62 from cicirello/o-index #125

Merge pull request #62 from cicirello/o-index

Merge pull request #62 from cicirello/o-index #125

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run Python unit tests
run: python3 -u -B -m unittest tests/tests.py