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