Skip to content

Undefined should have length of 0 (#40) #11

Undefined should have length of 0 (#40)

Undefined should have length of 0 (#40) #11

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Swift ${{ matrix.swift }} on Xcode ${{ matrix.xcode }}
runs-on: ${{ matrix.runs-on }}
env:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer"
strategy:
fail-fast: false
matrix:
include:
- swift: "6.0"
xcode: "16.0"
runs-on: macos-15
- swift: "6.1"
xcode: "16.3"
runs-on: macos-15
- swift: "6.2"
xcode: "26.0"
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Lint
run: swift format lint --recursive . --strict
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v