Skip to content

Build and Test

Build and Test #3

Workflow file for this run

name: Build and Test
on: [workflow_dispatch]
jobs:
run-unit-tests:
runs-on: macos-13
env:
XC_VERSION: ${{ '15.1' }}
strategy:
matrix:
configuration: ["Debug", "Release"]
steps:
- name: Select latest Xcode
run: "sudo xcode-select -s /Applications/Xcode_$XC_VERSION.app"
- uses: actions/checkout@v2
- name: Build and run unit tests
run: |
cd Scripts
./run_all_unit_tests.sh ${{ matrix.configuration }}