Skip to content

actions: latest version of setup python, with caching #465

actions: latest version of setup python, with caching

actions: latest version of setup python, with caching #465

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.12
architecture: x64
cache: 'pipenv'
cache-dependency-path: 'setup.py'
- run: pip install --upgrade -r requirements_dev.txt
- run: black --check *.py */
- run: isort --check-only *.py */
- run: flake8