From 19d2b065d59dc1ed48c57c675beb147345d36187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABlys=20B=C3=BChler?= <101628776+maelys-buhler@users.noreply.github.com> Date: Wed, 6 Mar 2024 18:08:33 +0100 Subject: [PATCH] Create django_test.yml --- .github/workflows/django_test.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/django_test.yml diff --git a/.github/workflows/django_test.yml b/.github/workflows/django_test.yml new file mode 100644 index 0000000..f2c0f2a --- /dev/null +++ b/.github/workflows/django_test.yml @@ -0,0 +1,30 @@ +name: Django CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: [3.7, 3.8, 3.9] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run Tests + run: | + python manage.py test