Skip to content

fix: Update Client Kill Callback auto-response (#91) #231

fix: Update Client Kill Callback auto-response (#91)

fix: Update Client Kill Callback auto-response (#91) #231

Workflow file for this run

name: Flake8 linter
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Setup flake8 annotations
uses: rbialon/flake8-annotations@v1
- name: Lint with flake8
run: |
flake8 . --ignore=E501,E402,W503 --statistics