Skip to content

Preparing release 0.10.0 #64

Preparing release 0.10.0

Preparing release 0.10.0 #64

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: CI Build
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
env:
CI: true
# ✅ Run core tests (fast, CPU-based)
- name: Run tests
run: swift test -v
env:
CI: true