From 53fdcc8533556ea5a7f994e940bab36d740430d0 Mon Sep 17 00:00:00 2001 From: mlietzow Date: Mon, 12 Aug 2024 14:11:12 +0200 Subject: [PATCH] added github action --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..e6bfcbd --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test-miex: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: python3 --version + - run: pip3 --version # for debugging + - run: pip3 install -r requirements.txt + - run: python3 -m pytest --verbosity=2