Skip to content

Bump bcrypt from 4.1.3 to 4.2.0 (#400) #1169

Bump bcrypt from 4.1.3 to 4.2.0 (#400)

Bump bcrypt from 4.1.3 to 4.2.0 (#400) #1169

Workflow file for this run

name: lint
on:
push:
branches: [ main ]
pull_request:
jobs:
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 10
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "wheel>=0.36.0"
pip install pre-commit
pre-commit install
- name: Formatting and linting checks
run: pre-commit run --all-files