Skip to content

Bump jinja2 from 3.1.2 to 3.1.3 in /tests #41

Bump jinja2 from 3.1.2 to 3.1.3 in /tests

Bump jinja2 from 3.1.2 to 3.1.3 in /tests #41

Workflow file for this run

--- # Github pylint action file
name: Pylint
on: [push] # yamllint disable-line rule:truthy
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
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 tests/requirements.txt
- name: Analysing the code with pylint
run: |
pylint --rcfile tests/pylint.conf $(git ls-files '*.py')