Skip to content

Add short backgammon gameplay. #7

Add short backgammon gameplay.

Add short backgammon gameplay. #7

Workflow file for this run

name: Pylint
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --disable=C0103,E0611,I1101,C0325,C0114,C0115,R0903,R0902,W0201,E1101,R0913,E0401,W0603