Myna/.github/workflows/swift-tests.yml
2025-12-25 12:58:04 +05:30

22 lines
460 B
YAML

# SPDX-FileCopyrightText: 2024 Nobody
# SPDX-License-Identifier: CC0-1.0
name: "[Swift] Test"
on: [push]
jobs:
swift-test:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v3
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test