Skip to content

Update README.md

Update README.md #5

Workflow file for this run

# Continuous Integration (CI) GitHub Action
name: Github Actions
on:
push:
branches:
- "*"
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
os: [ubuntu-latest]
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
python -m pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f pyproject.toml]; then pip install -e .; fi
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --rcfile=.pylintrc