Skip to content

Check CI

Check CI #361

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: flake8
on:
pull_request:
push:
branches:
- main
jobs:
flake8:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: flake8 .