Skip to content

Added pytest to requirements-dev.txt. #2713

Added pytest to requirements-dev.txt.

Added pytest to requirements-dev.txt. #2713

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -eo pipefail -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 .
- name: pre-commit
run: pre-commit run --all-files