Fix clang tidy warnings #359
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: AppImage | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: [ "master", "qe3" ] | |
| pull_request: | |
| branches: [ "master", "qe3" ] | |
| jobs: | |
| ubuntu-qe3: | |
| name: Qt 6.8 / Ubuntu 22.04 | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Clone the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Setup CMake | |
| uses: ./.github/actions/cmake | |
| with: | |
| qt_version: 6.8.3 | |
| use_qt6: ON | |
| modules: qtserialport qtmultimedia | |
| additional_cmake_args: -DCMAKE_INSTALL_PREFIX='${{ github.workspace }}/install/usr' | |
| - name: Create AppImage | |
| uses: ./.github/actions/appimage | |