forms: Fix issue with Qt 6.8.3 and Clang 21 #456
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: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| markdown: | |
| name: Lint Markdown | |
| runs-on: ubuntu-latest | |
| if: contains(github.event.head_commit.message, '[skip ci]') != true | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Generate docs | |
| run: cd docs && ./build_docs.sh | |
| - name: Run markdownlint-cli | |
| uses: nosborn/github-action-markdown-cli@v3.0.1 | |
| with: | |
| files: . |