Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
- protocol
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
library:
runs-on: macos-12
strategy:
matrix:
xcode: [13.2.1, 13.4.1]
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: make test-library
- name: Compile documentation
if: ${{ matrix.xcode == '13.4.1' }}
run: make test-docs
- name: Run benchmark
run: make benchmark
examples:
runs-on: macos-12
steps:
- uses: actions/checkout@v2
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_13.4.1.app
- name: Run tests
run: make test-examples