chore(deps): update dependency xunit.runner.visualstudio to v4 #53
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: Build Linux | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install build dependencies | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -y -qq \ | |
| build-essential cmake ninja-build pkg-config \ | |
| qt6-base-dev qt6-base-dev-tools qt6-tools-dev \ | |
| libqt6svg6-dev libxtst-dev libxss-dev | |
| - name: Configure | |
| run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -S linux | |
| - name: Build | |
| run: cmake --build build | |
| - name: Test | |
| env: | |
| QT_QPA_PLATFORM: offscreen | |
| run: ctest --test-dir build --output-on-failure | |
| - name: Upload binary artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: quadclicker-linux-x64 | |
| path: build/quadclicker | |
| if-no-files-found: error |