Skip to content

add tests.yaml

add tests.yaml #1

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
Desktop:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ Checkout Repository
uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.10.1
target: desktop
modules: 'qtpositioning'
cached: true
- name: Build
shell: bash
run: |
mkdir build
cd build
cmake ..
cmake --build .