Skip to content

Release 1.3.1

Release 1.3.1 #26

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-on-macos:
runs-on: macos-latest
strategy:
matrix:
xcode-version: ['16.0', '15.4', '15.2', '14.3.1']
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode-version }}.app
steps:
- uses: actions/checkout@v4
- name: Run swift build
run: swift build
- name: Run swift test
run: swift test
test-on-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run swift build
run: swift build
- name: Run swift test
run: swift test