Skip to content

Merge pull request #1 from theleftbit/kick-this-off #6

Merge pull request #1 from theleftbit/kick-this-off

Merge pull request #1 from theleftbit/kick-this-off #6

Workflow file for this run

name: CI
on:
push
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
library:
name: macOS
strategy:
matrix:
config: ['debug', 'release']
runs-on: ios
steps:
- uses: actions/checkout@v4
- name: Run ${{ matrix.config }} tests
run: swift test -c ${{ matrix.config }}
- name: Run compatibility tests
run: make test-compatibility
if: ${{ matrix.config == 'debug' }}