Skip to content

Commit d3fca03

Browse files
ci: ignore running test in main (#62)
* ci: ignore running test in main * fix ci
1 parent 8794dab commit d3fca03

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.circleci/config.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
macos:
7272
# Specify the Xcode version you desire here
7373
# See: https://circleci.com/docs/using-macos/
74-
xcode: 15.2.0
74+
xcode: 15.2.0
7575
steps:
7676
# Checkout the code as the first step.
7777
- checkout
@@ -121,5 +121,13 @@ workflows:
121121
ios: # This is the name of the workflow, feel free to change it to better match your workflow.
122122
# Inside the workflow, you define the jobs you want to run.
123123
jobs:
124-
- WDIO_IOS
125-
- JAVA_IOS
124+
- WDIO_IOS:
125+
filters:
126+
branches:
127+
ignore:
128+
- main
129+
- JAVA_IOS:
130+
filters:
131+
branches:
132+
ignore:
133+
- main

0 commit comments

Comments
 (0)