Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [main]

jobs:
check:
linux-check:
runs-on: ubuntu-latest

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
run: git diff --exit-code
- name: Checking code style
run: ./scripts/run-clang-tidy.sh
build:
linux-build:
runs-on: ubuntu-latest

steps:
Expand All @@ -46,4 +46,16 @@ jobs:
run: ninja -C build
- name: Test
run: ctest --test-dir build --output-on-failure --timeout 30
darwin-amd64-build-and-test:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Debug Build
shell: bash
run: make
- name: Debug Test
shell: bash
run: ctest --test-dir build-Debug --output-on-failure --timeout 30

Loading