Use django-upgrade to update django syntax to the latest possible. #382
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# Service containers to run with `container-job` | |
services: | |
# Label used to access the service container | |
postgres2: | |
# Docker Hub image | |
image: postgres:11.5 | |
# Provide the password for postgres | |
env: | |
POSTGRES_PASSWORD: somepassword | |
POSTGRES_DB: testing_db | |
ports: | |
- 5432:5432 | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
strategy: | |
matrix: | |
python-version: [3.9] | |
env: | |
DJANGO: 3.0 | |
SECRET_KEY: supersecret | |
DB_PORT: 5432 | |
POSTGRES_HOST: localhost | |
POSTGRES_PASSWORD: somepassword | |
POSTGRES_USER: postgres | |
POSTGRES_DB: testing_db | |
DJANGO_SETTINGS_MODULE: pyarweb.settings.development | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system libraries | |
run: | | |
sudo apt-get install -y libpq-dev libxml2-dev libxslt1-dev | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev_requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r dev_requirements.txt | |
- name: Check Code Style | |
uses: pre-commit/action@v3.0.1 | |
- name: Check for Django migrations | |
run: | | |
python manage.py makemigrations --dry-run --check | |
- name: Run migrations | |
run: | | |
python manage.py migrate | |
- name: Run tests | |
run: | | |
pytest -v |