Skip to content

🎨 Better UX for users migrating off Requests #270

🎨 Better UX for users migrating off Requests

🎨 Better UX for users migrating off Requests #270

Workflow file for this run

name: Lint code
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: lint-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: "3.x"
- name: Install nox
run: python -m pip install nox
- name: run pre-commit
run: nox -s lint