42 lines
631 B
YAML
42 lines
631 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
|
|
container:
|
|
image: git.omgitsalexl.me/omgitsalexl/ci-swift:6.3.3
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Test
|
|
run: swift test
|