Skip to content

Update ci.yml

Update ci.yml #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
library-swift-latest:
name: Library

Check failure on line 18 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 18
runs-on: macos-14
strategy:
matrix:
config:
- debug
- release
steps:
- uses: actions/checkout@v4
- name: Select Xcode 15.2
run: sudo xcode-select -s /Applications/Xcode_15.2.app
- name: Checkout Package
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: View Swift Version
run: swift --version
- name: Build and Test
run: |
swift build
swift test