Skip to content

Commit

Permalink
Add compatibility_tests CI (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Ye committed Dec 30, 2023
1 parent 3ea3e37 commit dd40763
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/compatibility_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Compatibility tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
compatibility_tests_macos:
name: Execute compatibility tests
strategy:
fail-fast: false
matrix:
include:
- os: macos-13
xcode-version: "15.1" # Swift 5.9.2
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Swift version
run: swift --version
- name: Run tests against Apple's SwiftUI on macOS
run: |
swift test \
--build-path .build-compatibility-test-debug
env:
OPENSWIFTUI_COMPATIBILITY_TEST: 1

0 comments on commit dd40763

Please sign in to comment.