Skip to content

Update to install-qt-action@v4 #240

Update to install-qt-action@v4

Update to install-qt-action@v4 #240

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