From 97ddbb9e175fe4db24d15952156c0ab70ed6fcfd Mon Sep 17 00:00:00 2001 From: Christian Palazzo Date: Sat, 20 Apr 2024 12:43:49 +0200 Subject: [PATCH] implemented workflow --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..95afde1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: CI + +on: + pull_request: + branches: + - main + +jobs: + codeQuality: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Run unit test + run: pytest