Extended weak zone to the surface. #1042
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: 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 |