Skip to content

ci: 馃挌 add icon, color and improve description to action.yml #14

ci: 馃挌 add icon, color and improve description to action.yml

ci: 馃挌 add icon, color and improve description to action.yml #14

Workflow file for this run

name: "pylint: linter"
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 'pypy3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev
- name: Analysing the code with pylint
run: |
pipenv run pylint $(git ls-files '*.py')