Initial addition and single file implementation for Swift-Testing #48
This file contains hidden or 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 will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: Multi-platform Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
check-macro-compatibility: | |
name: Check Macro Compatibility | |
runs-on: macos-15 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run Swift Macro Compatibility Check | |
uses: Matejkob/swift-macro-compatibility-check@v1 | |
with: | |
run-tests: true | |
major-versions-only: true | |
macos-15-sequoia-swift-test: | |
name: macOS 15 sequoia Swift tests | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: swift build -v | |
- name: Run swift tests | |
run: swift test -v | |
macos-14-sonoma-swift-test: | |
name: macOS 14 Sonoma swift tests | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: swift build -v | |
- name: Run swift tests | |
run: swift test -v | |
ubuntu-swift-test: | |
name: latest Ubuntu swift tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: swift build -v | |
- name: Run swift tests | |
run: swift test --enable-experimental-swift-testing -v |