Skip to content

Bump actions/checkout from 3 to 4 (#16) #63

Bump actions/checkout from 3 to 4 (#16)

Bump actions/checkout from 3 to 4 (#16) #63

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pygame==2.0.1
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') -d=duplicate-code --fail-under=9.5