Skip to content

Debugged SCC algorithm #251

Debugged SCC algorithm

Debugged SCC algorithm #251

Workflow file for this run

name: C/C++ CI
on:
push:
pull_request:
branches: [ sb-graph-dev ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install deps.
run: |
sudo add-apt-repository ppa:mhier/libboost-latest
sudo apt-get update
sudo apt-get install autoconf
sudo apt-get install libboost1.81-dev
sudo apt-get install cmake
sudo apt-get install g++
sudo apt-get install rapidjson-dev
- name: Build
working-directory: ./
run: |
autoconf
./configure
make
- name: Tests
working-directory: ./
run: make test