Skip to content

Actions(deps): Bump actions/setup-python from 6.0.0 to 6.1.0 #137

Actions(deps): Bump actions/setup-python from 6.0.0 to 6.1.0

Actions(deps): Bump actions/setup-python from 6.0.0 to 6.1.0 #137

Workflow file for this run

# Copyright (c) 2022 Sebastian Pipping <sebastian@pipping.org>
# 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.10", 3.14] # no current need for in-between versions
name: Run the Test Suite
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.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/