Skip to content

"StrictConcurrency=complete" and preparation for upcoming Swift 6 #59

"StrictConcurrency=complete" and preparation for upcoming Swift 6

"StrictConcurrency=complete" and preparation for upcoming Swift 6 #59

Workflow file for this run

name: Pull Request Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
macos-build:
runs-on: macOS-13
steps:
- uses: actions/checkout@v4
- name: Build (macOS)
run: swift build -v
- name: Run tests
run: swift test -v
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build (Ubuntu)
run: swift build -v
- name: Run tests
run: swift test -v