Skip to content
This repository has been archived by the owner on Apr 20, 2024. It is now read-only.

Bump ruamel-yaml from 0.18.5 to 0.18.6 #500

Bump ruamel-yaml from 0.18.5 to 0.18.6

Bump ruamel-yaml from 0.18.5 to 0.18.6 #500

Workflow file for this run

name: Pylint
on:
push:
pull_request:
workflow_dispatch:
jobs:
linting:
runs-on: [windows-latest]
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: isort
run: |
isort --check .
- name: flake8
run: |
flake8
- name: black
run: |
black . --check --verbose --diff
- name: pylint
run: |
pylint --rcfile .pylintrc --persistent n --fail-under 10 -sn *.py