Skip to content

Update Swift version from 6.1 to 6.2 in workflow #2

Update Swift version from 6.1 to 6.2 in workflow

Update Swift version from 6.1 to 6.2 in workflow #2

Workflow file for this run

name: Build and Test in Swift 6.2 on macOS
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
with:
swift-version: "6.2.0"
- name: Get swift version
run: swift --version
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v