fix(qt): restore fill_combo_values signal blocking #23
This file contains hidden or 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: 🎨 Qt6 Linting | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| branches: | |
| - 'main' | |
| jobs: | |
| # Run linting for PyQt6 | |
| lint-qt6: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: registry.gitlab.com/oslandia/qgis/pyqgis-4-checker/pyqgis-qt-checker:latest | |
| options: --user root | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Dry run lint (log only) | |
| run: pyqt5_to_pyqt6.py --dry_run --logfile pyqt6_checker.log ./ | |
| - name: Upload log artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: pyqt6_checker-log | |
| path: pyqt6_checker.log | |
| retention-days: 3 | |
| - name: Lint and fix | |
| run: pyqt5_to_pyqt6.py ./ |