Skip to content

Merge pull request #196 from PrincetonUniversity/issue-192 #659

Merge pull request #196 from PrincetonUniversity/issue-192

Merge pull request #196 from PrincetonUniversity/issue-192 #659

Workflow file for this run

name: Build
on: [push]
jobs:
build-serial:
runs-on: ubuntu-latest
steps:
- name: Check GNU and Cmake versions
run: gcc --version && cmake --version
- name: Checkout repository
uses: actions/checkout@v1
- name: Get submodules
run: git submodule init
&& git submodule update
- name: Configure Serial build
run: cmake -S . -B build
- name: Build
run: cmake --build build