From b4dbd57ffbb103344de26618e41d0bf54567e552 Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Wed, 24 Jan 2024 15:19:49 +0000 Subject: [PATCH] Add initial CI job for GitHub Actions Signed-off-by: Stefan Marr --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..0833816c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: CI + +on: [push, pull_request] + +jobs: + test-linux: + runs-on: ubuntu-latest + name: Ubuntu Latest + steps: + - name: Checkout ReBench + uses: actions/checkout@v3 + + - name: Setup Python + uses: actions/setup-python@v4 + + - name: Install PyTest + run: pip install pytest + + - name: Run PyTest + run: pytest