Skip to content

Make GitHub Actions run every week (so that we notice broken CI early in the future) #33

Make GitHub Actions run every week (so that we notice broken CI early in the future)

Make GitHub Actions run every week (so that we notice broken CI early in the future) #33

Workflow file for this run

# Copyright (c) 2022 Sebastian Pipping <[email protected]>
# Licensed under the MIT license, see file LICENSE.txt
name: Run the Test Suite
on:
pull_request:
push:
schedule:
- cron: '0 16 * * 5' # Every Friday 4pm
workflow_dispatch:
jobs:
run_test_suite:
strategy:
matrix:
python-version: [3.9, 3.13] # no current need for in-between versions
name: Run the Test Suite
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Run the Test Suite
run: |-
set -x
pip install -U setuptools # for Python >=3.12
pip install pytest
python setup.py sdist
cd dist/
tar xf hsluv-*.tar.gz
cd hsluv-*/
pytest -v tests/