From c01a7668a4cfec019159fbf354c189e3f159b040 Mon Sep 17 00:00:00 2001 From: Alexandre Quessy Date: Sat, 16 May 2020 06:32:11 -0400 Subject: [PATCH] Create qt-macos.yml --- .github/workflows/qt-macos.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/qt-macos.yml diff --git a/.github/workflows/qt-macos.yml b/.github/workflows/qt-macos.yml new file mode 100644 index 0000000..dcd56ac --- /dev/null +++ b/.github/workflows/qt-macos.yml @@ -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