update release notes && kbase.yml file #123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lintly Flake8 | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9.19 | |
- name: Install dependencies | |
run: pip install flake8 lintly | |
- uses: usama2490/lintly-flake8-github-action@v1.1 | |
with: | |
# The GitHub API token to create reviews with | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Fail if "new" violations detected or "any", default "new" | |
failIf: new | |
# Additional arguments to pass to flake8, default "." (current directory) | |
args: "--max-line-length=99 --exclude=lib/installed_clients/,lib/AbstractHandle/AbstractHandleServer.py,lib/AbstractHandle/AbstractHandleClient.py --ignore=E265 ." |