Skip to content

multigraph tests

multigraph tests #16

Workflow file for this run

name: CMake Build & Test
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake g++
- name: Configure CMake
run: |
mkdir build
cd build
cmake ..
- name: Build project
run: |
cd build
cmake --build .
- name: Run tests
run: |
cd build
ctest --output-on-failure