From 1864ff5b7f9d96326586394ac39030338e0bf213 Mon Sep 17 00:00:00 2001 From: xmuli Date: Sat, 25 Apr 2020 23:42:21 +0800 Subject: [PATCH] test: Create macos.yml (#3) Use GitHub Action to test building under macOS --- .github/workflows/macos.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..d9460a2 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,17 @@ +name: MyCi_MacOS + +on: [push] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v1 + - name: Install Qt + uses: jurplel/install-qt-action@v2.2.1 + - name: Run a qt project + run: | + cmake ./ + make