Skip to content

Commit

Permalink
ci: add pycodestile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
daniestevez committed Jan 24, 2024
1 parent 1c989c3 commit e9dea5f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pycodestyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'pycodestyle'

on: [push, pull_request]

jobs:
pycodestyle:
name: pycodestyle
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pycodestyle with pip
run: pip install pycodestyle
- name: Run pycodestyle
run: pycodestyle .

0 comments on commit e9dea5f

Please sign in to comment.