CxLLM-SDK/.github/workflows/ci.yml
cx-git-agent d5d36a1db4
Some checks failed
ci / build (${{ matrix.os }}) (macos-14) (push) Has been cancelled
chore: snapshot local working tree (2026-05-17T20:24:08Z)
2026-05-17 15:27:25 -05:00

28 lines
526 B
YAML

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-14]
steps:
- uses: actions/checkout@v4
- name: Show toolchain
run: |
xcodebuild -version || true
swift --version || true
- name: Build
run: make build
- name: Test
run: make test
- name: Lint
run: make lint