Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Commit

Permalink
Merge pull request #34 from quantmind/master
Browse files Browse the repository at this point in the history
release all python versions
  • Loading branch information
lsbardel authored Jul 24, 2020
2 parents de4e30e + b76b5ed commit 49b5083
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion agiletoolkit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Agile toolkit for devops and repository management"""

__version__ = "0.5.1"
__version__ = "0.5.2"

0 comments on commit 49b5083

Please sign in to comment.