Skip to content

Go to line dialog

Go to line dialog #3

Workflow file for this run

name: Test build the application
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: 6.5.*
modules: 'qtpdf'
cache: true
- name: Configure
run: mkdir build && cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build -j $(nproc)