Skip to content

feat: implement integer to Roman numeral conversion (python) (#2) #5

feat: implement integer to Roman numeral conversion (python) (#2)

feat: implement integer to Roman numeral conversion (python) (#2) #5

Workflow file for this run

name: Lint with Pylint 🐍
on:
push:
branches:
- main
paths:
- '**/*.py'
pull_request:
branches:
- '**'
paths:
- '**/*.py'
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Pylint
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Run Pylint
run: |
pylint --rcfile=./.config/pylintrc $(git ls-files '*.py')