Skip to content

be even more verbose in the README #17

be even more verbose in the README

be even more verbose in the README #17

Workflow file for this run

name: autopep8
on: [push]
jobs:
format:
name: Format (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
pip install autopep8
- run: |
autopep8 --diff --exit-code $(git ls-files '*.py')