Skip to content

Updated documentation #33

Updated documentation

Updated documentation #33

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: Swift
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Swift 6.2
uses: swift-actions/setup-swift@v3
with:
swift-version: "6.2" # Specify the desired Swift version
- name: Get Swift version
run: swift --version # Verify the installed Swift version
- name: Build Swift Package
run: swift build -v
- name: Run Swift Package Tests
run: swift test -v