Skip to content

Commit

Permalink
Merge pull request #4 from AvaxarXapaxa/pylint-workflow
Browse files Browse the repository at this point in the history
Create Pylint workflow
  • Loading branch information
SSS-Says-Snek authored Aug 18, 2021
2 parents 399f47f + 3942fc1 commit d66703b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pylint

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install pylint
- name: Analysing the code with pylint
run: |
pylint --extension-pkg-whitelist pygame --fail-under 8.5 --exit-zero src

0 comments on commit d66703b

Please sign in to comment.