Skip to content

Bump @babel/traverse from 7.22.8 to 7.23.2 in /docs/webpack-react-example/tic-tac #86

Bump @babel/traverse from 7.22.8 to 7.23.2 in /docs/webpack-react-example/tic-tac

Bump @babel/traverse from 7.22.8 to 7.23.2 in /docs/webpack-react-example/tic-tac #86

Workflow file for this run

name: Pylint
on: [pull_request, push] # activates the workflow when there is a push or pull request in the repo
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install pylint-django
pip install -r config/requirements.txt
- name: Analysing the code with pylint
run: |
pylint --load-plugins pylint_django --django-settings-module=ats.settings --rcfile=config/pylintrc $(git ls-files '*.py')