Skip to content

Merge pull request #478 from kennethreitz/dependabot/pip/certifi-2023… #94

Merge pull request #478 from kennethreitz/dependabot/pip/certifi-2023…

Merge pull request #478 from kennethreitz/dependabot/pip/certifi-2023… #94

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install pipenv
pipenv install --dev --system
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure