Create qt-macos.yml

This commit is contained in:
Alexandre Quessy
2020-05-16 06:32:11 -04:00
committed by GitHub
parent 057c9ba1f1
commit c01a7668a4
+30
View File
@@ -0,0 +1,30 @@
# Build a Qt project on macOS
name: Build on macOS
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
target: 'desktop'
modules: 'gui core serialport network opengl xml'
- name: qmake
run: qmake .
- name: make
run: make
- name: make check
run: make check
# - name: make distcheck
# run: make distcheck