Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Bump certifi from 2023.11.17 to 2024.7.4 #9

Bump certifi from 2023.11.17 to 2024.7.4

Bump certifi from 2023.11.17 to 2024.7.4 #9

Workflow file for this run

name: pre-commit
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Create virtualenv
run: |
python -m venv venv
source venv/bin/activate
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit install-hooks
pre-commit run --all-files