Skip to content

2.3.2

2.3.2 #94

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: ["6.1", "6.2"]
runs-on: ubuntu-latest
container:
image: swift:${{ matrix.swift }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Swift version
run: swift --version
- name: Swift build
run: swift build -c release