We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc642c commit a98c185Copy full SHA for a98c185
.github/workflows/test.yaml
@@ -6,7 +6,16 @@ on:
6
branches: [ main ]
7
workflow_dispatch:
8
jobs:
9
- lint:
10
- uses: graphqlswift/ci/.github/workflows/lint.yaml@main
11
- test:
12
- uses: graphqlswift/ci/.github/workflows/test.yaml@main
+ macos:
+ name: Test on macOS
+ runs-on: macos-latest
+ 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