Skip to content

fix(deps): update all non-major dependencies #455

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #455

Workflow file for this run

name: PyCodeStyle
on:
push:
branches:
- main
pull_request:
workflow_call:
jobs:
python-3:
name: PyCodeStyle
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pylint
run: |
python -m pip install --upgrade pip
pip install pycodestyle
- name: Analysing the code with pylint
run: |
pycodestyle --config=./.pycodestyle .