Skip to content

Commit

Permalink
add testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Dec 21, 2023
1 parent e2d1368 commit 321cc02
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/bldtest.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 321cc02

Please sign in to comment.