Skip to content

Fix Slack link

Fix Slack link #74

Workflow file for this run

name: Lint
"on":
push:
branches: [main]
pull_request:
branches: ["*"]
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/setup-python@v4
with:
python-version: 3.7
cache: pipenv
- uses: satackey/action-docker-layer-caching@v0.0.11
continue-on-error: true
- run: pip install pipenv
- run: pipenv install --dev --deploy
- run: pipenv run python -m flake8
- run: pipenv run black --check --diff --color .