From 98062b82741bc198f61db0a3948818829a72f8e5 Mon Sep 17 00:00:00 2001 From: Joffily Ferreira Date: Mon, 11 Dec 2023 10:55:32 -0300 Subject: [PATCH] Installs github actions --- .github/workflows/django.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/django.yml diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml new file mode 100644 index 0000000..2dc027f --- /dev/null +++ b/.github/workflows/django.yml @@ -0,0 +1,31 @@ +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.11] + + 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 +