Skip to content

Bump version to 0.2.3 #34

Bump version to 0.2.3

Bump version to 0.2.3 #34

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
strategy:
matrix:
python-version: ["3.11"]
poetry-version: ["1.2.2"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --no-root --no-cache
- name: Analysing the code with pylint
run: poetry run pylint $(git ls-files '*.py')