Skip to content

Bump django from 4.2.7 to 5.0.4 #326

Bump django from 4.2.7 to 5.0.4

Bump django from 4.2.7 to 5.0.4 #326

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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
env:
ALLOWED_HOSTS: '*'
SECRET_KEY: '49l9t_gk!o#+i9d53-ro33g(9_9l5g1j))ws74e&0j7%%@f8u='