Skip to content

Add 457ae2b26af3a618c2eb03173feb4c2c05d155c4e92aff3c53b04be4b3a67120_… #1114

Add 457ae2b26af3a618c2eb03173feb4c2c05d155c4e92aff3c53b04be4b3a67120_…

Add 457ae2b26af3a618c2eb03173feb4c2c05d155c4e92aff3c53b04be4b3a67120_… #1114

Workflow file for this run

name: Pylint
on: [push]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
# Caching Poetry dependencies
- name: Cache Poetry dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install Dependencies
run: |
poetry install
- name: Run Pylint
run: poetry run pylint src/*.py --errors-only