Skip to content

Bump django from 5.0.6 to 5.0.7 #1049

Bump django from 5.0.6 to 5.0.7

Bump django from 5.0.6 to 5.0.7 #1049

Workflow file for this run

name: type checking
on:
push:
pull_request:
types: [opened, reopened]
pull_request_target:
jobs:
run:
runs-on: ubuntu-latest
env:
DJANGO_CA_SECRET_KEY: dummy
steps:
- name: Acquire sources
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.12"
architecture: x64
- name: Apply caching of dependencies
uses: actions/[email protected]
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('**/requirements-*.txt') }}
- name: Install dependencies
run: |
pip install -U pip setuptools wheel
pip install -r requirements.txt -r requirements/requirements-mypy.txt
- name: run mypy
run: mypy .