Skip to content

Bump @babel/runtime-corejs3 from 7.28.0 to 7.28.3 in /sourcefiles/modern #43

Bump @babel/runtime-corejs3 from 7.28.0 to 7.28.3 in /sourcefiles/modern

Bump @babel/runtime-corejs3 from 7.28.0 to 7.28.3 in /sourcefiles/modern #43

Workflow file for this run

name: Pylint Code Check
permissions:
contents: read
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Pylint
run: |
pylint --exit-zero $(git ls-files '*.py')