From dadeb6ad7339257b14d104477a8ffb0c79d70dfb Mon Sep 17 00:00:00 2001 From: Ryan Jacobs Date: Sat, 16 Sep 2023 17:07:51 -0700 Subject: [PATCH] test github ci --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a7526a8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI +run-name: continuous integration +on: [push] +jobs: + gcc: + runs-on: ubuntu-22.04 + steps: + - run: ./tests/test.sh + shell: bash + env: + CC: gcc + CXX: g++ + FC: gfortran