Skip to content

Update Catch2 library to latest tagged release. #43

Update Catch2 library to latest tagged release.

Update Catch2 library to latest tagged release. #43

Workflow file for this run

# Copyright (c) 2014-2025 Kartik Kumar ([email protected])
# Distributed under the MIT License.
# See accompanying file LICENSE or copy at http://opensource.org/licenses/MIT
# This workflow is based off of the GitHub Actions documentation:
# - https://docs.github.com/en/actions
name: run-all-tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
# - name: Build CMake
# uses: threeal/[email protected]
# with:
# cmake-version: '3.23.x'
- name: Build CMake project
run: |
cmake -S . -B build -DBUILD_TESTING=on
cmake --build build
- name: Run tests
run: make -C build test