Skip to content

Commit

Permalink
update run condition for rest of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
velicuvlad committed Jul 13, 2023
1 parent 6940d2a commit 422ab9d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/xcodebuild-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,21 @@ name: iOS

on:
push:
branches: [ master ]
branches:
- 'master'
- 'release/**'
pull_request:
branches: [ master ]
branches:
- 'master'
- 'release/**'

jobs:
build:
name: build-and-test
runs-on: macos-latest
runs-on: macOS-latest
strategy:
matrix:
scheme: ["CBL_ObjC", "CBL_Swift"]
matrix:
scheme: ["CBL_ObjC", "CBL_Swift"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/xcodebuild-mac.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: macOS

on:
push:
branches:
- master
pull_request:
branches:
- '**'
push:
branches:
- 'master'
- 'release/**'
pull_request:
branches:
- 'master'
- 'release/**'

jobs:
build:
Expand Down

0 comments on commit 422ab9d

Please sign in to comment.