Skip to content

Use alternate means to detect if running on main thread to avoid prob… #826

Use alternate means to detect if running on main thread to avoid prob…

Use alternate means to detect if running on main thread to avoid prob… #826

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
macos:
strategy:
matrix:
xcode:
- 15.4
- '16.1'
name: macOS
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: make test-swift
ubuntu:
strategy:
matrix:
swift:
- "5.7"
name: Ubuntu (Swift ${{ matrix.swift }})
runs-on: ubuntu-20.04
steps:
- uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v3
- run: swift test
windows:
strategy:
matrix:
swift:
- "5.9.1"
name: Windows (Swift ${{ matrix.swift }})
runs-on: windows-latest
steps:
- uses: compnerd/gha-setup-swift@main
with:
branch: swift-${{ matrix.swift }}-release
tag: ${{ matrix.swift }}-RELEASE
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- run: swift build
- run: swift test
android:
strategy:
matrix:
swift:
- "6.0.2"
name: Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: skiptools/swift-android-action@v2
with:
swift-version: ${{ matrix.swift }}
copy-files: ${GITHUB_WORKSPACE}/Tests/SnapshotTestingTests/__Snapshots__