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
This commit is contained in:
Wojciech Lewicki
2022-02-24 14:15:42 +01:00
committed by GitHub
parent b007efe23a
commit 5b519c1a0c
+22
View File
@@ -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