fix(tools_qgis): improve restore_user_layer to handle deleted user la… #4
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@v4 | |
| - 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@v4 | |
| with: | |
| name: pyqt6_checker-log | |
| path: pyqt6_checker.log | |
| retention-days: 3 | |
| - name: Lint and fix | |
| run: pyqt5_to_pyqt6.py ./ |