Skip to content

update workflow python (3.11) and pylint (2.16.2) #266

update workflow python (3.11) and pylint (2.16.2)

update workflow python (3.11) and pylint (2.16.2) #266

Workflow file for this run

# vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 smartindent nu
---
name: pylint
on:
pull_request:
push:
schedule:
- cron: "20 6 * * 1"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: install pylint
run: |
python -m pip install --upgrade pip
pip install pylint==2.16.2 pyyaml
- name: run pylint
run: |
pylint *.py