Files
SwiftRunnerTesting/.gitea/workflows/test.yml
T
omgitsalexl 7e549950fe
Swift Testing / Swift - Linux (push) Canceled after 0s
Swift Testing / Swift - macOS (push) Canceled after 0s
Swift Testing / Swift - Windows (push) Canceled after 0s
Created action for testing build
2026-08-24 06:47:26 -07:00

31 lines
514 B
YAML

name: Swift Testing
on:
push:
workflow_dispatch:
jobs:
test:
name: Swift - ${{ matrix.platform }}
strategy:
matrix:
include:
- platform: macOS
runner: macos-26:host
- platform: Windows
runner: windows-11:host
- platform: Linux
runner: ubuntu-24.04:docker://swift:6.3
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: swift test