Skip to content

1.3.1 (#15)

1.3.1 (#15) #32

Workflow file for this run

name: Build on Ubuntu
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
ubuntu_build:
name: Build on Ubuntu with Swift ${{matrix.swift}}
strategy:
matrix:
swift: [5.9, 5.8.1, 5.7.3]
runs-on: ubuntu-latest
container:
image: swift:${{matrix.swift}}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Swift version
run: swift --version
- name: Swift build
run: swift build -c release