replace broken download link #97
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: Run tests on commit | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Prepare test data | |
run: | | |
cd data | |
make fastestspeedrun | |
- name: Install GTest and Boost-Graph | |
run: | | |
sudo apt-get update && sudo apt-get install -y libgtest-dev libboost-graph-dev | |
- name: Download Lemon | |
run: ./dependencies.sh | |
- name: Configure | |
run: | | |
cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug | |
- name: Build | |
run: | | |
cmake --build build --config Debug | |
- name: Test | |
run: | | |
cd build | |
ctest -C Debug --output-on-failure --verbose --exclude-regex LargeOnes |