Skip to content

Merge pull request #11 from mrackwitz/optional-fix #52

Merge pull request #11 from mrackwitz/optional-fix

Merge pull request #11 from mrackwitz/optional-fix #52

Workflow file for this run

name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.7"]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Swift
uses: swift-actions/[email protected]
with:
swift-version: ${{ matrix.swift }}
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: swift build
- name: Run tests
run: swift test