Skip to content

Use matrix to run tests on all folders #5

Use matrix to run tests on all folders

Use matrix to run tests on all folders #5

Workflow file for this run

name: Run tests on all examples
on:
push
jobs:
build_and_test:
strategy:
matrix:
folder: ["04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19"]
runs-on: macos-14
steps:
- name: Check Xcode version
run: /usr/bin/xcodebuild -version
- name: Checkout repository
uses: actions/checkout@v3
- name: Test examples ${{ matrix.folder }}
run: |
brew install xcodegen
cd "$(find . -maxdepth 1 -type d -name './${{ matrix.folder }}*' | head -n 1)"
make