Skip to content

Commit a98c185

Browse files
ci: De-parallelizing macos tests to isolate blocker
1 parent 1bc642c commit a98c185

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/test.yaml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ on:
66
branches: [ main ]
77
workflow_dispatch:
88
jobs:
9-
lint:
10-
uses: graphqlswift/ci/.github/workflows/lint.yaml@main
11-
test:
12-
uses: graphqlswift/ci/.github/workflows/test.yaml@main
9+
macos:
10+
name: Test on macOS
11+
runs-on: macos-latest
12+
steps:
13+
- uses: maxim-lobanov/setup-xcode@v1
14+
with:
15+
xcode-version: latest-stable
16+
- uses: actions/checkout@v4
17+
- name: Build and test
18+
run: |
19+
swift test \
20+
--skip testDoNotModifyBuiltInTypesAnDirectives \
21+
--skip testExtends

0 commit comments

Comments
 (0)