Skip to content

Update README

Update README #177

Workflow file for this run

name: Swift
on:
push:
branches: [development]
pull_request:
branches: [development]
jobs:
Xcode:
strategy:
matrix:
xcode_version: ['13.2.1', '13.1', '13.0', '12.5.1', '12.4', '11.7']
runs-on: macos-11
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
steps:
- uses: actions/checkout@v2
- run: swift -version
- run: swift test -c release -Xswiftc -enable-testing
Linux:
strategy:
matrix:
tag: ['5.1', '5.2', '5.3']
runs-on: ubuntu-latest
container:
image: swift:${{ matrix.tag }}
steps:
- uses: actions/checkout@v2
- run: swift test -c release -Xswiftc -enable-testing