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 ad60c47Copy full SHA for ad60c47
.github/workflows/test.yaml
@@ -6,7 +6,12 @@ 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 --skip testDoNotModifyBuiltInTypesAnDirectives --skip testExtendsDifferentTypesMultipleTimes
0 commit comments