Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

chore(deps): bump django-cors-headers from 4.3.0 to 4.3.1 #244

chore(deps): bump django-cors-headers from 4.3.0 to 4.3.1

chore(deps): bump django-cors-headers from 4.3.0 to 4.3.1 #244

Workflow file for this run

---
name: Test
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .venv
key: poetry-${{ hashFiles('poetry.lock')}}
restore-keys: |
peotry-
- name: Build the project
run: |
echo -e "ENV=dev\nUID=$UID" > .env
docker-compose up -d --build backend
- name: Lint the code
run: |
docker-compose run --rm backend ruff format --check
docker-compose run --rm backend ruff check . --output-format=github
- name: Check for missing migrations
run: docker-compose run --rm backend python manage.py makemigrations --check --dry-run --no-input
- name: Run pytest
run: docker-compose run --rm backend pytest --no-cov-on-fail --cov --create-db -vv