Fixed Xcode plugin. #10
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 (494). | |
# (see https://actionstatus.elegantchaos.com for more details) | |
# -------------------------------------------------------------------------------- | |
name: Tests | |
on: [push, pull_request] | |
jobs: | |
macOS-swift-6: | |
name: macOS (Swift 6.0) | |
env: | |
TOOLCHAINS: swift | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Make Logs Directory | |
run: mkdir logs | |
- name: Select Swift | |
run: | | |
sudo xcode-select -s /Applications/Xcode_16.0.0.app | |
swift --version | |
- name: Build (Release) | |
run: swift build --build-tests --configuration release | |
- name: Test (Release) | |
run: swift test --skip-build --configuration release | |
- name: Upload Logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: logs | |
path: logs | |