From 7d36558bd53b126d11b7d3992e98e22435fff1b3 Mon Sep 17 00:00:00 2001 From: Alexander Bartnik <47391688+adbartni@users.noreply.github.com> Date: Thu, 14 Sep 2023 10:21:29 -0400 Subject: [PATCH] Set up initial ci/cd workflow --- .github/workflows/mrio-test.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/mrio-test.yml diff --git a/.github/workflows/mrio-test.yml b/.github/workflows/mrio-test.yml new file mode 100644 index 0000000..049be02 --- /dev/null +++ b/.github/workflows/mrio-test.yml @@ -0,0 +1,22 @@ +# Workflow for OBI Testing + +name: MRIO Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + workflow_dispatch: + +jobs: + mrio_test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Run test + run: | + make test \ No newline at end of file