Enhance examples and README with animations and better docs #76
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up dependencies | |
| run: sudo ./scripts/setup_dependencies.sh | |
| - name: Build project | |
| run: ./scripts/build.sh | |
| - name: Run tests | |
| run: cd build/release && ctest --output-on-failure | |
| - name: Run examples | |
| run: ./scripts/run.sh |