Skip to content

Update and expand CI testing #37

Update and expand CI testing

Update and expand CI testing #37

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'CODE_OF_CONDUCT.md'
- '.editorconfig'
- '.spi.yml'
pull_request:
branches:
- main
jobs:
test_macos_13:
name: Test macOS 13
runs-on: macOS-13
steps:
- uses: actions/checkout@v4
- name: test
run: swift test
test_macos_13:

Check failure on line 26 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 26
name: Test macOS 14
runs-on: macOS-14
steps:
- uses: actions/checkout@v4
- name: test
run: swift test
test_linux:
name: Test Linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install swiftly
run: curl -L https://swift-server.github.io/swiftly/swiftly-install.sh | bash -s -- -y
- name: Install the latest Swift toolchain
run: swiftly install latest
- name: Test
run: swift test