CI #585
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: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
# Daily at 05:47 | |
- cron: '47 5 * * *' | |
workflow_dispatch: {} | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.event_name != 'pull_request' && github.sha || '' }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ matrix.wrapper.name }} | |
runs-on: ${{ matrix.os.runs-on }} | |
container: ${{ matrix.os.container[matrix.python.docker] }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- name: Linux | |
runs-on: ubuntu-latest | |
python_platform: linux | |
container: | |
'3.5': docker://python:3.5-buster | |
'3.6': docker://python:3.6-buster | |
'3.7': docker://python:3.7-buster | |
'3.8': docker://python:3.8-buster | |
'3.9': docker://python:3.9-buster | |
'3.10': docker://python:3.10-buster | |
'3.11': docker://python:3.11-buster | |
- name: Windows | |
runs-on: windows-latest | |
python_platform: win32 | |
- name: macOS | |
runs-on: macos-latest | |
python_platform: darwin | |
python: | |
- name: CPython 3.5 | |
tox: py35 | |
action: '3.5' | |
docker: '3.5' | |
- name: CPython 3.6 | |
tox: py36 | |
action: '3.6' | |
docker: '3.6' | |
- name: CPython 3.7 | |
tox: py37 | |
action: '3.7' | |
docker: '3.7' | |
- name: CPython 3.8 | |
tox: py38 | |
action: '3.8' | |
docker: '3.8' | |
- name: CPython 3.9 | |
tox: py39 | |
action: '3.9' | |
docker: '3.9' | |
- name: CPython 3.10 | |
tox: py310 | |
action: '3.10' | |
docker: '3.10' | |
- name: CPython 3.11 | |
tox: py311 | |
action: '3.11' | |
docker: '3.11' | |
wrapper: | |
- name: PyQt5 | |
tox: pyqt5 | |
major: 5 | |
- name: PyQt6 | |
tox: pyqt6 | |
major: 6 | |
- name: PySide2 | |
tox: pyside2 | |
major: 5 | |
- name: PySide6 | |
tox: pyside6 | |
major: 6 | |
exclude: | |
- python: | |
tox: py311 | |
wrapper: | |
tox: pyside2 | |
- python: | |
tox: py35 | |
wrapper: | |
major: 6 | |
- python: | |
tox: py36 | |
wrapper: | |
major: 6 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up ${{ matrix.python.name }} | |
if: ${{ job.container == '' }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python.action }} | |
architecture: x64 | |
- name: Report Python information | |
shell: bash | |
run: | | |
python -c 'import sys; print(sys.version)' | |
echo | |
echo " <=======>" | |
echo | |
pip --version | |
echo | |
echo " <=======>" | |
echo | |
pip list --no-python-version-warning | |
echo | |
echo " <=======>" | |
echo | |
pip freeze --all --no-python-version-warning | |
- name: Install Linux Qt5 dependencies | |
if: matrix.os.python_platform == 'linux' | |
run: | | |
apt-get update --yes | |
apt-get install --yes libgl1 | |
- name: Install | |
run: | | |
pip install 'tox<4' | |
- name: Test | |
run: | | |
tox -v -e "${{ matrix.python.tox }}-${{ matrix.wrapper.tox }}" | |
all: | |
name: All | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
steps: | |
- name: This | |
shell: python | |
run: | | |
import this |