File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright (c) 2022 Sebastian Pipping <sebastian@pipping.org>
2+ # Licensed under the MIT license, see file LICENSE.txt
3+
4+ name : Run the Test Suite
5+
6+ on :
7+ - pull_request
8+ - push
9+
10+ jobs :
11+ run_test_suite :
12+ strategy :
13+ matrix :
14+ python-version : [3.7, '3.10'] # no current need for in-between versions
15+ name : Run the Test Suite
16+ runs-on : ubuntu-20.04
17+ steps :
18+ - uses : actions/checkout@v3
19+
20+ - name : Set up Python ${{ matrix.python-version }}
21+ uses : actions/setup-python@v3
22+ with :
23+ python-version : ${{ matrix.python-version }}
24+
25+ - name : Run the Test Suite
26+ run : |-
27+ set -x
28+ python setup.py sdist
29+ cd dist/
30+ tar xf hsluv-*.tar.gz
31+ cd hsluv-*/
32+ python setup.py test
Original file line number Diff line number Diff line change 1+ [ ![ Build Status] ( https://github.com/hsluv/hsluv-python/actions/workflows/test.yml/badge.svg )] ( https://github.com/hsluv/hsluv-python/actions/workflows/test.yml )
12[ ![ Package Version] ( https://img.shields.io/pypi/v/hsluv.svg )] ( https://pypi.python.org/pypi/hsluv/ )
23
34A Python implementation of [ HSLuv] ( https://www.hsluv.org ) (revision 4).
You can’t perform that action at this time.
0 commit comments