Thanks to visit codestin.com
Credit goes to github.com

Skip to content

stop propagating matrix dimensions via expression types (always make … #309

stop propagating matrix dimensions via expression types (always make …

stop propagating matrix dimensions via expression types (always make … #309

name: test-macos-clang
on:
push:
branches: [ stable, develop ]
jobs:
build:
runs-on: macos-15
steps:
- name: checkout repository
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: install_eigen
run: |
brew install eigen
- name: run_tests
run: |
cd tests/
chmod +x run_tests.sh
./run_tests.sh -c clang
echo "TEST_RESULT=$(echo $?)" >> $GITHUB_ENV
- name: check_tests_passed
run: |
if [ "$TEST_RESULT" -eq "0" ]; then
exit 0
else
exit 1
fi