Skip to content

Actions(deps): Bump actions/setup-python from 6.2.0 to 6.3.0 #175

Actions(deps): Bump actions/setup-python from 6.2.0 to 6.3.0

Actions(deps): Bump actions/setup-python from 6.2.0 to 6.3.0 #175

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.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/