Skip to content

update readme

update readme #2

Workflow file for this run

name: Builds
permissions:
contents: read
on:
workflow_dispatch:
push:
branches:
- main
- 'release/**'
pull_request:
branches:
- main
- 'release/**'
jobs:
tests:
name: Xcode ${{ matrix.xcode-version }} / ${{ matrix.configuration }}
runs-on: macos-15
strategy:
matrix:
xcode-version: [
'16.0',
'16.1',
'16.2',
]
configuration: [
'debug',
'release',
]
steps:
- name: Run checkout
uses: actions/checkout@v4
- name: Run builds
run: |
export DEVELOPER_DIR="/Applications/Xcode_${{ matrix.xcode-version }}.app"
swift build --configuration ${{ matrix.configuration }}