Skip to content

Actions(deps): Bump actions/checkout from 3.5.2 to 4.2.1 #40

Actions(deps): Bump actions/checkout from 3.5.2 to 4.2.1

Actions(deps): Bump actions/checkout from 3.5.2 to 4.2.1 #40

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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/