Debugged cycle treatment in SCC algorithm #249
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |