25 lines
344 B
YAML
25 lines
344 B
YAML
|
name: Build Test
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
Ubuntu:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@latest
|
||
|
|
||
|
- name: Install Qt
|
||
|
uses: jurplel/install-qt-action@v2
|
||
|
|
||
|
-name: Build Qtk
|
||
|
- run: |
|
||
|
mkdir build && cd build
|
||
|
cmake .. && cmake --build .
|
||
|
|
||
|
|
||
|
|
||
|
|