Skip to content

fix function namespace #4

fix function namespace

fix function namespace #4

Workflow file for this run

name: Swift CI
on: [push, pull_request]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: ubuntu-latest

Check failure on line 10 in .github/workflows/swift.yaml

View workflow run for this annotation

GitHub Actions / Swift CI

Invalid workflow file

The workflow is not valid. .github/workflows/swift.yaml (Line: 10, Col: 13): Unexpected value 'ubuntu-latest' .github/workflows/swift.yaml (Line: 11, Col: 16): Unexpected value '5.9'
swift: "5.9"
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test