Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: System Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up CMake
uses: lukka/get-cmake@latest
- name: Run System Tests
run: |
mkdir build
cmake -S . -B build -DFLAG_BUILD_TESTS=OFF
cmake --build build
./system-test.sh
shell: bash
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]