Skip to content

igore envrc and pyenv file #2668

igore envrc and pyenv file

igore envrc and pyenv file #2668

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
cache: "pip"
- name: Install packages
run: |
pip install -r requirements-dev.txt
pip install -r requirements-server.txt
pip install .
- name: pre-commit
run: pre-commit run --all-files