Skip to content

Commit

Permalink
feat: add empty CI job so it runs on PR then (#1705)
Browse files Browse the repository at this point in the history
Added empty CI job for building macOS so it can be run on the proper PR: #1704
  • Loading branch information
WoLewicki authored Feb 24, 2022
1 parent b007efe commit 5b519c1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/macos-build-test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5b519c1

Please sign in to comment.