summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-06-30 18:16:33 +0200
committerDominik Holland <dominik.holland@googlemail.com>2022-01-27 13:50:04 +0100
commit823328fb943a8033ab6033f0e85516299352561c (patch)
tree6a520b8319e1f0865af6fd42c302eaac48c5a3ae
parentf6554cbbec209bbf07e629c68c8cecbe361bb9cd (diff)
downloadqtivi-qface-823328fb943a8033ab6033f0e85516299352561c.tar.gz
CI: Add a release job which tests and uploads to PyPI
-rw-r--r--.github/workflows/release.yml68
1 files changed, 68 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..79cfb76
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,68 @@
+# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
+# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
+
+name: Release
+
+on:
+ # Triggers the workflow when a release is created
+ release:
+ types: [created]
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: [3.7, 3.8, 3.9]
+ dependencies: [minimal, latest]
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install flake8 pytest setuptools wheel twine
+ if [ ${{ matrix.dependencies }} == "latest"]; then
+ pip install -r requirements.txt;
+ else
+ pip install -r requirements_minimal.txt;
+ fi
+ - name: Lint with flake8
+ run: |
+ # stop the build if there are Python syntax errors or undefined names
+ #flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
+ # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
+ #flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+ - name: Test with pytest
+ run: |
+ python -m pytest
+
+ upload:
+ needs: [ build ]
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python 3.7
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.7
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install setuptools wheel twine
+ pip install -r requirements_minimal.txt;
+ - name: Upload to PyPI
+ run: |
+ python3 setup.py sdist bdist_wheel --build-number $GITHUB_RUN_NUMBER
+ python3 -m twine upload --skip-existing dist/*
+ env:
+ TWINE_USERNAME: __token__
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}