simpler arrays #79
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: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Setup | |
run: | | |
brew install llvm@18 bison re2c | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --target x_test -j $(nproc) | |
- name: Run tests | |
working-directory: build | |
run: ctest | |
env: | |
CTEST_OUTPUT_ON_FAILURE: True |