Skip to content

Bumped the Swift version to 5.9, which is already the required minimu… #31

Bumped the Swift version to 5.9, which is already the required minimu…

Bumped the Swift version to 5.9, which is already the required minimu… #31

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Build & test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Swift on ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v1
- uses: actions/checkout@v3
- name: Build
run: swift build
- name: Run tests
run: swift test