Skip to content

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group #24

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group

Bump certifi from 2024.6.2 to 2024.7.4 in the pip group #24

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