From 5b519c1a0c3266d9e98fea766aff1a6e96c65f2d Mon Sep 17 00:00:00 2001 From: Wojciech Lewicki Date: Thu, 24 Feb 2022 14:15:42 +0100 Subject: [PATCH] feat: add empty CI job so it runs on PR then (#1705) Added empty CI job for building macOS so it can be run on the proper PR: #1704 --- .github/workflows/macos-build-test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/macos-build-test.yml diff --git a/.github/workflows/macos-build-test.yml b/.github/workflows/macos-build-test.yml new file mode 100644 index 00000000..4675bfab --- /dev/null +++ b/.github/workflows/macos-build-test.yml @@ -0,0 +1,22 @@ +name: Test macOS build +on: + pull_request: + branches: + - develop + paths: + - 'apple/**' + push: + branches: + - develop + workflow_dispatch: +jobs: + build: + runs-on: macos-latest + env: + WORKING_DIRECTORY: Example + concurrency: + group: macos-${{ github.ref }} + cancel-in-progress: true + steps: + - name: checkout + uses: actions/checkout@v2