build(deps): bump django from 5.0.2 to 5.0.3 #433
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: 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 |