Skip to content

list: add final newline #39

list: add final newline

list: add final newline #39

Workflow file for this run

# 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]
swift: ["6.0.3"]
runs-on: ${{ matrix.os }}
steps:
- uses: yretenai/setup-swift@edge
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test