Skip to content

Added CI Integration & Badge #1

Added CI Integration & Badge

Added CI Integration & Badge #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up CMake
uses: lukka/get-cmake@v3.30.3
- name: Configure CMake
run: cmake -B build
- name: Build
run: cmake --build build
- name: Run tests
run: ctest --test-dir build