Skip to content

降低 Swift 版本為 6.1 #74

降低 Swift 版本為 6.1

降低 Swift 版本為 6.1 #74

Workflow file for this run

name: Swift
on:
push:
branches:
- main
jobs:
build:
runs-on: macos-15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: "6.1.0"
- name: Build package
run: swift build
- name: Run tests
run: swift test