Remove Matrix4 warning in doc: Matrix4.inverse() is now full 4x4 inverse #276
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ master, develop, test-ci ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-12] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: | | |
cd ${{ github.workspace }} | |
mkdir build | |
cd build | |
cmake -DASL_TESTS=ON -DASL_BUILD_SHARED=OFF .. | |
- name: make | |
run: | | |
cd build | |
cmake --build . | |
- name: test | |
run: | | |
cd build | |
ctest --output-on-failure |