Add new userMin/Max properties #3029
Workflow file for this run
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: pre-commit | |
| on: [push, pull_request] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| - name: Install Qt and qmllint | |
| run: | | |
| sudo apt-get update -y --quiet | |
| sudo apt-get install python3 python3-pip pipx -y | |
| pipx install aqtinstall | |
| pipx ensurepath | |
| USER_BASE_BIN="$(python3 -m site --user-base)/bin" | |
| export PATH="$USER_BASE_BIN:$PATH" | |
| QT_VERSION=6.10.1 | |
| QT_ARCH=linux_gcc_64 | |
| QT_PATH=/opt/Qt | |
| aqt install-qt linux desktop $QT_VERSION $QT_ARCH -O $QT_PATH | |
| echo "$QT_PATH/$QT_VERSION/gcc_64/bin" >> $GITHUB_PATH | |
| - uses: pre-commit/action@v3.0.1 |