Skip to content

Commit

Permalink
Add pylint GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
fsschneider committed Jan 21, 2022
1 parent 8df70e3 commit 6d3b0fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Linting

on: [push, pull_request]

jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install pylint
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Run pylint
run: |
pylint algorithmic_efficiency

0 comments on commit 6d3b0fe

Please sign in to comment.