From 321cc023475d1143e4c9d1fc6437c06894810aaa Mon Sep 17 00:00:00 2001 From: James Edwards Date: Thu, 21 Dec 2023 11:55:00 -0700 Subject: [PATCH] add testing --- .github/workflows/bldtest.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/bldtest.yml diff --git a/.github/workflows/bldtest.yml b/.github/workflows/bldtest.yml new file mode 100644 index 0000000..26b7921 --- /dev/null +++ b/.github/workflows/bldtest.yml @@ -0,0 +1,25 @@ +name: mpi-serial +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the main branch +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - id: load-env + run: + sudo apt-get update + sudo apt-get install gfortran + sudo apt-get install autoconf + + - name: Build mpi-serial + run: | + cd mpi-serial + configure + make