on: push: branches: [master] pull_request: branches: [master] env: BUILD_TYPE: Release jobs: build: runs-on: ubuntu-22.04 steps: - name: Install Qt uses: jurplel/install-qt-action@v2 with: version: "6.5.2" host: "linux" target: "desktop" arch: "gcc_64" # dir: "${{github.workspace}}/qt/" install-deps: "true" - name: List files in Qt run: find ${{env.Qt5_Dir}} - uses: actions/checkout@v2 - name: Configure CMake run: cmake -B '${{github.workspace}}'/build - name: Build run: cmake --build '${{github.workspace}}'/build