Skip to content

Fixing python 3.12 issues for MacOS #11

Fixing python 3.12 issues for MacOS

Fixing python 3.12 issues for MacOS #11

name: ubuntu build python=3.8
# workflow dispatch has been added for testing purposes
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install spare scores
run: |
python -m pip cache purge
pip install setuptools twine wheel
python setup.py bdist_wheel
cd dist
WHEEL_FILE=$(ls spare_scores*)
pip install "$WHEEL_FILE"
- name: Run unit tests
run: |
cd tests/unit && python -m unittest discover -s . -p "*.py"