Skip to content

Update README.md

Update README.md #52

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 on macOS
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
macOS:
name: Build on macOS
runs-on: macOS-14
steps:
- name: Print Swift version
run: swift --version
- name: Checkout
uses: actions/checkout@master
- name: Swift build
run: swift build -c release