Files
SwiftRunnerTesting/.gitea/workflows/test.yml
T
omgitsalexl d92d11c75c
Swift Testing / macOS (push) Failing after 2s
Swift Testing / Windows (push) Failing after 14s
Swift Testing / Ubuntu (push) Canceled after 0s
Separated from matrix into individual jobs
2026-08-24 07:01:16 -07:00

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