Skip to content

Tests

Tests #6

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
with:

Check failure on line 20 in .github/workflows/swift.yml

View workflow run for this annotation

GitHub Actions / Swift

Invalid workflow file

The workflow is not valid. .github/workflows/swift.yml (Line: 20, Col: 12): Unexpected value '' .github/workflows/swift.yml (Line: 21, Col: 7): Unexpected value 'swift-version'
swift-version: "6.0.0"
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v