Add GitHub workflows

This commit is contained in:
Guille Gonzalez
2026-01-11 12:11:31 +01:00
parent bb88ace8d6
commit c025214077
2 changed files with 82 additions and 0 deletions

55
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,55 @@
name: CI
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'LICENSE*'
- '.gitignore'
- '.editorconfig'
- '**.gif'
- '**.png'
- '**.jpg'
pull_request:
branches:
- '*'
paths-ignore:
- '**.md'
- 'LICENSE*'
- '.gitignore'
- '.editorconfig'
- '**.gif'
- '**.png'
- '**.jpg'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test All Platforms
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode 26.0
run: sudo xcode-select -s /Applications/Xcode_26.0.app
- name: Skip macro validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Run tests
run: make test
backward-compatibility:
name: Backward Compatibility (Xcode 16.4)
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode 16.4
run: sudo xcode-select -s /Applications/Xcode_16.4.app
- name: Skip macro validation
run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES
- name: Test macOS
run: make test-macos

27
.github/workflows/format.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Format
on:
push:
branches:
- main
concurrency:
group: format-${{ github.ref }}
cancel-in-progress: true
jobs:
swift_format:
name: swift-format
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode 26.0
run: sudo xcode-select -s /Applications/Xcode_26.0.app
- name: Format
run: make format
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Run swift-format
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}