We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 170ff51 commit bc8557cCopy full SHA for bc8557c
.github/workflows/test.yml
@@ -26,3 +26,12 @@ jobs:
26
SWIFT_VERSION=${{ matrix.toolchain }} make bootstrap
27
echo ${{ matrix.toolchain }} > .swift-version
28
make test
29
+ native-build:
30
+ # Check native build to make it easy to develop applications by Xcode
31
+ name: Build for native target
32
+ runs-on: macos-11
33
+ steps:
34
+ - uses: actions/checkout@v2
35
+ - run: swift build
36
+ env:
37
+ DEVELOPER_DIR: /Applications/Xcode_13.2.1.app/Contents/Developer/
0 commit comments