sporestack-python/.woodpecker.yml

49 lines
1.2 KiB
YAML
Raw Normal View History

2024-01-18 20:10:44 +00:00
steps:
2022-11-02 00:00:00 +00:00
python-3.8:
2022-11-28 16:49:50 +00:00
image: python:3.8
2022-11-02 00:00:00 +00:00
commands:
- pip install pipenv==2023.12.1 tomli
2022-11-02 00:00:00 +00:00
- pipenv install --dev --deploy
2024-01-18 20:28:39 +00:00
- pipenv run almake test-typing
- pipenv run almake test-pytest
2022-11-02 00:00:00 +00:00
- pipenv run almake build-dist
- sha256sum dist/*
2022-02-10 21:47:57 +00:00
python-3.9:
2022-11-28 16:49:50 +00:00
image: python:3.9
2022-02-10 21:47:57 +00:00
commands:
- pip install pipenv==2023.12.1
2022-02-10 21:47:57 +00:00
- pipenv install --dev --deploy
2024-01-18 20:28:39 +00:00
- pipenv run almake test-typing
- pipenv run almake test-pytest
2022-02-10 21:47:57 +00:00
- pipenv run almake build-dist
- sha256sum dist/*
python-3.10:
2022-11-28 16:49:50 +00:00
image: python:3.10
2022-02-10 21:47:57 +00:00
commands:
- pip install pipenv==2023.12.1
2022-11-02 00:00:00 +00:00
- pipenv install --dev --deploy
2024-01-18 20:28:39 +00:00
- pipenv run almake test-typing
- pipenv run almake test-pytest
2022-11-02 00:00:00 +00:00
- pipenv run almake build-dist
- sha256sum dist/*
python-3.11:
2022-11-28 16:49:50 +00:00
image: python:3.11
2022-11-02 00:00:00 +00:00
commands:
- pip install pipenv==2023.12.1
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake build-dist
- sha256sum dist/*
python-3.12:
image: python:3.11
commands:
- pip install pipenv==2023.12.1
2022-02-10 21:47:57 +00:00
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake build-dist
- sha256sum dist/*