Skip to content

Change in setup.

Change in setup. #1041

Workflow file for this run

name: ci
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install packages with apt
run: sudo apt update && sudo apt install -y cmake gcc g++ libhdf5-serial-dev libsuitesparse-dev
- name: Builds cmake project
run: cmake -B ./cmake-build -DTEST=ON && cmake --build ./cmake-build
- name: Runs tests
run: make run-tests