jacobian

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit ba770a9dea9768987deed2b982dfc263b95eea12
parent ac73df14746bf96ece82d78014621de74793a6dd
Author: richardfeynmanrocks <freifeld.david@gmail.com>
Date:   Fri,  7 Aug 2020 12:33:57 -0700

Github Action experiments
Diffstat:
A.github/workflows/test.yml | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + - name: cmake . + run: cmake . + - name: make + run: make + - name: ctest + run: ctest