Skip to content

Commit

Permalink
Merge branch 'csivitu:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
woaitsAryan authored Apr 9, 2024
2 parents 994d4aa + c2587a8 commit df2e66b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Linting

on:
push:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
flake8:
runs-on: ubuntu-latest
name: Lint - PEP8 & more (flake8)
outputs:
id: check-python-files
value: ${{ steps.set-output.value }}
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: pip install flake8

- name: Run flake8
run: flake8

0 comments on commit df2e66b

Please sign in to comment.