40 lines
578 B
YAML
40 lines
578 B
YAML
name: Swift Testing
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
macos:
|
|
name: macOS
|
|
runs-on: macos-26
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
run: swift test
|
|
|
|
windows:
|
|
name: Windows
|
|
runs-on: windows-11
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
run: swift test
|
|
|
|
ubuntu:
|
|
name: Ubuntu
|
|
runs-on: ubuntu-24.04:docker://swift:6.3.3
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
run: swift test
|