Fix access control #99
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 | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
library: | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
config: ['debug', 'release'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode 14.3 | |
run: sudo xcode-select -s /Applications/Xcode_14.3.app | |
- name: Run ${{ matrix.config }} tests | |
run: CONFIG=${{ matrix.config }} make test-all | |
- name: Build for library evolution | |
run: CONFIG=${{ matrix.config }} make build-for-library-evolution | |
ubuntu-tests: | |
strategy: | |
matrix: | |
config: ['debug', 'release'] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: swift test -c ${{ matrix.config }} |