Update tests to Qt6 as well #26
This file contains 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: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4.1.0 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install cmake qt6-base-dev g++ | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake ../src | |
make |