updated bootstrap script #191
Workflow file for this run
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
# -------------------------------------------------------------------------------- | |
# This workflow was automatically generated by Action Status 2.0.6 (478). | |
# (see https://actionstatus.elegantchaos.com for more details) | |
# -------------------------------------------------------------------------------- | |
name: Tests | |
on: [push, pull_request] | |
jobs: | |
macOS-swift-53: | |
name: macOS (Swift 5.3) | |
runs-on: macos-11 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Make Logs Directory | |
run: mkdir logs | |
- name: Xcode Version | |
run: | | |
ls -d /Applications/Xcode* | |
sudo xcode-select -s /Applications/Xcode_12.4.app | |
xcodebuild -version | |
swift --version | |
- name: Swift Version | |
run: swift --version | |
- name: Test (Release) | |
run: swift test --configuration release -Xswiftc -enable-testing --enable-test-discovery | |
- name: Upload Logs | |
uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: logs | |
path: logs | |
macOS-swift-56: | |
name: macOS (Swift 5.6) | |
runs-on: macos-11 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Make Logs Directory | |
run: mkdir logs | |
- name: Xcode Version | |
run: | | |
ls -d /Applications/Xcode* | |
sudo xcode-select -s /Applications/Xcode_13.2.1.app | |
xcodebuild -version | |
swift --version | |
- name: Swift Version | |
run: swift --version | |
- name: Test (Release) | |
run: swift test --configuration release -Xswiftc -enable-testing --enable-test-discovery | |
- name: Upload Logs | |
uses: actions/upload-artifact@v1 | |
if: always() | |
with: | |
name: logs | |
path: logs | |