Add previews to integration test cases #4296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- case-key-paths | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
library-swift-latest: | |
name: Library | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
config: | |
- debug | |
- release | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 15 | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Run ${{ matrix.config }} tests | |
run: make CONFIG=${{ matrix.config }} test-library | |
library-evolution: | |
name: Library (evolution) | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 15 | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Build for library evolution | |
run: make build-for-library-evolution | |
benchmarks: | |
name: Benchmarks | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 15 | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Run benchmark | |
run: make benchmark | |
examples: | |
name: Examples | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 15 | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Run tests | |
run: make test-examples | |
integration: | |
name: Integration | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 15 | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Run tests | |
run: make test-integration |