Skip to content

Bump webpack-cli from 4.8.0 to 6.0.1 in /sourcefiles/modern #38

Bump webpack-cli from 4.8.0 to 6.0.1 in /sourcefiles/modern

Bump webpack-cli from 4.8.0 to 6.0.1 in /sourcefiles/modern #38

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')