From b2d31d97ff72bec1ec8365eb259c85bdad017444 Mon Sep 17 00:00:00 2001 From: Rafa13io <60799796+Rafa13io@users.noreply.github.com> Date: Wed, 8 May 2024 22:40:24 +0200 Subject: [PATCH] Create django.yml --- .github/workflows/django.yml | 55 ++++++++++++++++++++++++++++++++++++ 1 file changed, 55 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..b51c049 --- /dev/null +++ b/.github/workflows/django.yml @@ -0,0 +1,55 @@ +name: Django CI + +on: + push: + branches: [ "master", "backend" ] + pull_request: + branches: [ "master", "backend" ] + +jobs: + build: + + runs-on: ubuntu-latest + container: python:latest + + env: + SECRET_KEY: ${{ secrets.SECRET_KEY }} + POSTGRES_USER: ${{ secrets.POSTGRES_USER }} + POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} + POSTGRES_DB: ${{ secrets.POSTGRES_DB }} + POSTGRES_HOST: ${{ secrets.POSTGRES_HOST }} + POSTGRES_PORT: ${{ secrets.POSTGRES_PORT }} + DJANGO_SETTINGS_MODULE: ${{ secrets.DJANGO_SETTINGS_MODULE }} + + services: + database: + image: postgres:latest + ports: + - 5432:5432 + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 + env: + POSTGRES_USER: ${{ secrets.POSTGRES_USER }} + POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} + POSTGRES_DB: ${{ secrets.POSTGRES_DB }} + redis_cache: + image: redis:latest + ports: + - 6379:6379 + redis_celery: + image: redis:latest + ports: + - 6380:6379 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python + 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