Skip to content

Nimble 14: Fix broken tests in swift 6 #553

Nimble 14: Fix broken tests in swift 6

Nimble 14: Fix broken tests in swift 6 #553

Workflow file for this run

name: CI (Xcode)
on:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
xcode_sonoma:
name: Xcode ${{ matrix.xcode }} (Xcode Project)
runs-on: macos-14
strategy:
matrix:
xcode: ["15.0.1", "15.1", "15.2"]
fail-fast: false
env:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app"
steps:
- uses: actions/checkout@v4
- run: ./test macos
- run: ./test ios
- run: ./test tvos
- run: ./test watchos
xcode_spm:
name: Xcode ${{ matrix.xcode }} (Swift Package)
runs-on: macos-14
strategy:
matrix:
xcode: ["15.0.1", "15.1", "15.2"]
fail-fast: false
env:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app"
steps:
- uses: actions/checkout@v4
- run: ./test macos_xcodespm
- run: ./test ios_xcodespm
- run: ./test tvos_xcodespm
- run: ./test watchos_xcodespm