Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

chore: update Swift version to 6.1 and add improvement checklist docu… #5

chore: update Swift version to 6.1 and add improvement checklist docu…

chore: update Swift version to 6.1 and add improvement checklist docu… #5

Workflow file for this run

name: Swift
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: '6.1'
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: '6.1'
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v