Update README.md #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |