Skip to content

Remove verbose logs (#3) #10

Remove verbose logs (#3)

Remove verbose logs (#3) #10

Workflow file for this run

name: Run CI
on:
push:
branches: [ main-bcny ]
paths-ignore:
- '**.md' # Do not need to run CI for markdown changes.
pull_request:
branches: [ main-bcny ]
paths-ignore:
- '**.md'
jobs:
macos-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- xcode-version: 15.0.1
ios-sim: 'platform=iOS Simulator,name=iPhone 17,OS=17.0'
os: macos-13
- xcode-version: 14.3.1
ios-sim: 'platform=iOS Simulator,name=iPhone 16,OS=16.4'
os: macos-13
- xcode-version: 13.4.1
ios-sim: 'platform=iOS Simulator,name=iPhone 11,OS=15.5'
os: macos-12
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # If you only need the current version keep this.
- uses: ./.github/actions/ci
with:
xcode-version: ${{ matrix.xcode-version }}
ios-sim: ${{ matrix.ios-sim }}
- uses: ./.github/actions/build-docs
linux-build:
runs-on: ubuntu-latest
strategy:
matrix:
swift-version:
# This package originally goes back to Swift 5.0
# however, we're unable to specify a dependency at a specific SHA
# until Swift version 5.5+ so while these reflect what used to be
# supported by the base package, this fork requires a different
# minimum toolchain and package description.
# - 5.1
# - 5.2
# - 5.3
# - 5.4
# - 5.5
- 5.6
- 5.7
- 5.8
- 5.9
container: swift:${{ matrix.swift-version }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # If you only need the current version keep this.
- name: Build and test
run: swift test --enable-test-discovery
windows-build:
name: Windows - Swift 5.9
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Swift
uses: compnerd/gha-setup-swift@cd348eb89f2f450b0664c07fb1cb66880addf17d
with:
branch: swift-5.9-release
tag: 5.9-RELEASE
- name: Build and test
run: swift test