Skip to content

[pre-commit.ci] pre-commit autoupdate #512

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #512

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
lint:
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install
run: poetry install
- name: Lint with Pylint
run: poetry run pylint src