Skip to content

Read the docs build.os #168

Read the docs build.os

Read the docs build.os #168

Workflow file for this run

name: PEP8
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Check formatting with pycodestyle
run: |
python -m pip install --upgrade pip
pip install pycodestyle
pycodestyle --max-line-length=88 .