Skip to content

Minor fix to the tatami_test umbrella. #3

Minor fix to the tatami_test umbrella.

Minor fix to the tatami_test umbrella. #3

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Run unit tests
jobs:
test:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Ubuntu Latest GCC",
os: ubuntu-latest,
}
- {
name: "macOS Latest Clang",
os: macos-latest
}
steps:
- uses: actions/checkout@v4
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Configure the build
run: cmake -S . -B build
- name: Run the build
run: cmake --build build
- name: Run the tests
run: |
cd build
ctest