Skip to content

add 3.12 pylint test #25

add 3.12 pylint test

add 3.12 pylint test #25

Workflow file for this run

name: Pylint
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
jobs:
python-lint:
name: Python Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: python -m pip install flake8
- name: Lint with flake8
run: flake8 action.py