Skip to content

Commit

Permalink
Github pipeline for build sanity
Browse files Browse the repository at this point in the history
  • Loading branch information
IgKh committed Jan 19, 2024
1 parent 5b08b7d commit 034d884
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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)

0 comments on commit 034d884

Please sign in to comment.