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 8b2ea2eCopy full SHA for 8b2ea2e
.github/workflows/test.yaml
@@ -6,7 +6,15 @@ 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: swift-actions/setup-swift@v2
14
+ - uses: actions/checkout@v4
15
+ - name: Build and test
16
+ run: |
17
+ swift test \
18
+ --skip testDoNotModifyBuiltInTypesAnDirectives \
19
+ --skip testExtendsDifferentTypesMultipleTimes \
20
+ --skip testExtendsEnumsWithDeprecatedValues \
0 commit comments