Merge example 19 into 15 (working) #417
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: test | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
cc: [gcc, clang] | |
include: | |
- cc: gcc | |
cxx: g++ | |
- cc: clang | |
cxx: clang++ | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- run: ./depends/setup.sh | |
- run: ./scripts/style.sh | |
- run: ./scripts/configure.sh -d -t --${{ matrix.cc }} | |
- run: ./scripts/build.sh | |
- run: ./scripts/test.sh |