Bump jurplel/install-qt-action from 3.3.0 to 4.0.0 #167
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: cmake | |
on: [push] | |
jobs: | |
cmake-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Install cmake-format | |
run: pip install cmake-format | |
- name: Run cmake-format | |
run: | | |
cmake-format -i ./CMakeLists.txt | |
cmake-format -i ./src/CMakeLists.txt | |
cmake-format -i ./src/internal/CMakeLists.txt | |
cmake-format -i ./tests/CMakeLists.txt | |
cmake-format -i ./data/CMakeLists.txt | |
cmake-format -i ./cmake/CompilerWarnings.cmake | |
cmake-format -i ./cmake/Sanitizers.cmake | |
cmake-format -i ./cmake/StaticAnalyzers.cmake | |
- name: Add & Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
signoff: true | |
message: 'Format cmake files' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |