Skip to content

Bump djangorestframework from 3.15.1 to 3.15.2 in the pip group #22

Bump djangorestframework from 3.15.1 to 3.15.2 in the pip group

Bump djangorestframework from 3.15.1 to 3.15.2 in the pip group #22

Workflow file for this run

name: Django CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test