feat: Migrate from PySide2 to PySide6 (Qt5 -> Qt6) #84
Workflow file for this run
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: Check Python code | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
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 | |
pip install -r requirements.txt | |
- name: Test with mypy | |
run: | | |
pip install mypy | |
mypy ./src/main/python | |
- name: Test with flake8 | |
run: | | |
pip install flake8 | |
flake8 ./src/main/python --ignore B011,E203,E501,E722,E731,W503,SIM119,SIM106 |