From b76b5edfed564725218d28a2b90e519068785701 Mon Sep 17 00:00:00 2001 From: Luca Sbardella Date: Fri, 24 Jul 2020 17:14:09 +0100 Subject: [PATCH] release all python versions --- .github/workflows/release.yml | 10 +++++++--- agiletoolkit/__init__.py | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c557be4..bf89a2e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,22 +14,26 @@ jobs: PYTHON_ENV: ci PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} GITHUB_TOKEN: ${{ secrets.QMBOT_GITHUB_TOKEN }} + strategy: + matrix: + python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: ${{ matrix.python-version }} - name: Install dependencies run: make install - name: lint run: make test-lint - name: run tests run: make test - - name: build python 3.8 bundle + - name: build python bundle run: make bundle - name: release to pypi run: make release-pypi - name: release to github + if: matrix.python-version == '3.8' run: make release-github diff --git a/agiletoolkit/__init__.py b/agiletoolkit/__init__.py index 9348717..2350d9b 100644 --- a/agiletoolkit/__init__.py +++ b/agiletoolkit/__init__.py @@ -1,3 +1,3 @@ """Agile toolkit for devops and repository management""" -__version__ = "0.5.1" +__version__ = "0.5.2"