-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Can't run on macOS 11 due to actions/runner-images#2486
- Loading branch information
1 parent
b53997e
commit c4c9a8f
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
on: push | ||
jobs: | ||
test: | ||
runs-on: macos-11.0 #macOS11 is not 'latest' at the time of this writing | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test | ||
run: | | ||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift test | ||
# disabled due to https://github.com/actions/virtual-environments/issues/2486 | ||
|
||
# on: push | ||
# jobs: | ||
# test: | ||
# runs-on: macos-11.0 #macOS11 is not 'latest' at the time of this writing | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Test | ||
# run: | | ||
# /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift test | ||
# |