Skip to content
This repository has been archived by the owner on Oct 19, 2023. It is now read-only.

Archive package

Archive package #14

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
- name: Setup flake8 annotations
uses: rbialon/flake8-annotations@v1
- name: flake8
run: |
pip install flake8
flake8 --ignore=E203,E501,W503 --max-line-length=88 .