Skip to content

Fix compatibility with Qt 6.7 #237

Fix compatibility with Qt 6.7

Fix compatibility with Qt 6.7 #237

Workflow file for this run

name: Ubuntu-CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
sudo apt install qtbase5-dev libkf5syntaxhighlighting-dev libicu-dev
- name: Build qtextpad
run: |
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/dist ..
make -j2 && make install