mirror of
https://github.com/qurator-spk/modstool.git
synced 2025-06-09 19:59:57 +02:00
23 lines
488 B
YAML
23 lines
488 B
YAML
version: 2.1
|
|
|
|
jobs:
|
|
test:
|
|
parameters:
|
|
python-version:
|
|
type: string
|
|
docker:
|
|
- image: cimg/python:<< parameters.python-version >>
|
|
steps:
|
|
- checkout
|
|
- run: pip3 install --upgrade pip
|
|
- run: pip3 install -e .
|
|
- run: pip3 install -r requirements-test.txt
|
|
- run: pytest
|
|
|
|
workflows:
|
|
all-tests:
|
|
jobs:
|
|
- test:
|
|
matrix:
|
|
parameters:
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|