Skip to content

Commit

Permalink
Add autopep8 action
Browse files Browse the repository at this point in the history
  • Loading branch information
loribonna authored Oct 3, 2023
1 parent c670444 commit c5c2735
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Autopep on push

on:
pull_request:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: autopep8
id: autopep8
uses: peter-evans/autopep8@v2
with:
args: --recursive --in-place --aggressive --max-line-length=200 --ignore=E402 .

0 comments on commit c5c2735

Please sign in to comment.