Skip to content

Updating workflows to work on current GitHub stack #19

Updating workflows to work on current GitHub stack

Updating workflows to work on current GitHub stack #19

Workflow file for this run

name: macOS
on: [pull_request]
jobs:
build:
timeout-minutes: 3
runs-on: macOS-latest
steps:
- name: Set up Swift 6
uses: SwiftyLab/setup-swift@latest
with:
swift-version: '6.0'
- name: Swift version
run: swift --version
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v