Skip to content

This should fix the Github Actions error #10

This should fix the Github Actions error

This should fix the Github Actions error #10

name: build-and-test
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.8, "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: python -m venv ve &&
./ve/bin/python install -r test_reqs.txt &&
./ve/bin/python runtests.py