Skip to content

build(deps): bump django from 5.0.4 to 5.0.5 #468

build(deps): bump django from 5.0.4 to 5.0.5

build(deps): bump django from 5.0.4 to 5.0.5 #468

Workflow file for this run

name: Django CI
env:
PYTHON_VERSION: '3.11'
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pipenv'
- name: Downloading 3rd party libs
run: make get-static-libs
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
make requirements
- name: Run Tests
run: |
pipenv run make style-check
pipenv run make tests