Skip to content

Add missing swift build for linux ci #332

Add missing swift build for linux ci

Add missing swift build for linux ci #332

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
macos:
runs-on: macos-14
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.app
- name: Run Swift Tests
run: |
make test
make test-swift6
- name: Build for All Platforms
run: make build-all
linux:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Build Swift
run: make build-swift
- name: Run Swift Tests
run: make test