diff --git a/.woodpecker.yml b/.woodpecker.yml index 242e5c4..174762a 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,9 +1,11 @@ pipeline: - build: - image: debian + test-python: + image: python:${PYTHON_VERSION} commands: - - echo "This is the build step" - a-test-step: - image: python - commands: - - python -V \ No newline at end of file + - sleep 30 + - python -V + +matrix: + PYTHON_VERSION: + - 3.7 + - 3.10 \ No newline at end of file