Skip to content

Commit

Permalink
github: add linting workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Mar 18, 2024
1 parent 3957813 commit 4a926e0
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: lint

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- "**"
paths-ignore:
- "docs/**"

concurrency:
group: build-lint-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
autopep8:
name: "Formatting lints"
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: autopep8
uses: peter-evans/autopep8@v2
with:
args: --exit-code -r -d -a -a src/
- name: Fail if autopep8 requires changes
if: ${{ failure() }}
run: exit 1

0 comments on commit 4a926e0

Please sign in to comment.