Skip to content

More more print

More more print #10

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", "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
echo "Will try to cd in $(find . -maxdepth 1 -type d -name './${{ matrix.folder }}*' | head -n 1)"
set -x
ls
find . -maxdepth 1 -type d -name './${{ matrix.folder }}*'
cd "$(find . -maxdepth 1 -type d -name './${{ matrix.folder }}*' | head -n 1)"
echo "Currently in $(pwd)"
echo "ls:"
ls
make