Add option to export iofxml start list with vacants or not #215
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: Lint | |
| on: | |
| push: | |
| branches: [ "master", "qe3" ] | |
| pull_request: | |
| branches: [ "master", "qe3" ] | |
| jobs: | |
| clang-tidy: | |
| name: clang-tidy / Ubuntu 22.04 | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: clang | |
| CXX: clang++ | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Run clang-tidy | |
| uses: ./.github/actions/run-linter | |
| with: | |
| lint_program_with_args: clang-tidy --quiet --warnings-as-errors=* | |
| clazy: | |
| name: clazy / Ubuntu 22.04 | |
| runs-on: ubuntu-22.04 | |
| env: | |
| CC: clang | |
| CXX: clang++ | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Run clazy | |
| uses: ./.github/actions/run-linter | |
| with: | |
| lint_program_with_args: clazy-standalone --checks=level1,no-fully-qualified-moc-types,no-non-pod-global-static,no-qstring-arg,no-qproperty-without-notify,no-range-loop-detach,no-lambda-unique-connection,no-qstring-ref |