-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 1.07 KB
/
Tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# --------------------------------------------------------------------------------
# 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