From cfa0cabd41dc1cd07285cf3313859a37659d8008 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 21 May 2024 19:10:22 +0200 Subject: [PATCH] add unit tests workflow --- .github/workflows/unit_tests.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/unit_tests.yml diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml new file mode 100644 index 00000000..692398a0 --- /dev/null +++ b/.github/workflows/unit_tests.yml @@ -0,0 +1,30 @@ +name: python_unit_tests + +on: + push: + paths: + - '**/*.py' + pull_request: + paths: + - '**/*.py' + +jobs: + unit-tests: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r tubearchivist/requirements-dev.txt + + - name: Run unit tests + run: pytest tubearchivist