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 dc8afc7Copy full SHA for dc8afc7
.github/workflows/test.yaml
@@ -6,7 +6,14 @@ 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 testExtends
0 commit comments