Skip to content

Update README.md and remove files #4527

Update README.md and remove files

Update README.md and remove files #4527

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
cache: 'pip'
- run: make lint-deps
- run: make lint
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true