Merge pull request #78 from open-zaak/feature/black #196
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run CI | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ['3.7', '3.8', '3.9', '3.10'] | |
django: ['3.2'] | |
binding: ['BROWSER', 'WEBSERVICE'] | |
cmisurlmapping: [ 'False', 'True' ] | |
exclude: | |
- binding: 'BROWSER' | |
cmisurlmapping: 'True' | |
name: Tests (Py${{ matrix.python }}, Django ${{ matrix.django }}, ${{ matrix.binding }}, URL mapping = ${{ matrix.cmisurlmapping }}) | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Bring up Alfresco | |
run: cd alfresco && docker-compose up -d | |
- name: Install dependencies | |
run: pip install tox tox-gh-actions codecov | |
- name: Run tests | |
run: | | |
export TOXENV=py${PYTHON_VERSION/./}-django${DJANGO/./}-$(echo $CMIS_BINDING | tr '[:upper:]' '[:lower:]') | |
tox | |
codecov -e TOXENV,DJANGO --file reports/coverage-${TOXENV}.xml | |
env: | |
PYTHON_VERSION: ${{ matrix.python }} | |
DJANGO: ${{ matrix.django }} | |
CMIS_BINDING: ${{ matrix.binding }} | |
CMIS_URL_MAPPING_ENABLED: ${{ matrix.cmisurlmapping }} | |
publish: | |
name: Publish package to PyPI | |
runs-on: ubuntu-latest | |
needs: tests | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Build sdist and wheel | |
run: | | |
pip install pip setuptools wheel --upgrade | |
python setup.py sdist bdist_wheel | |
- name: Publish a Python distribution to PyPI | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |