Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feishu bot test #21

Closed
wants to merge 13 commits into from
15 changes: 15 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Pylint

on: [push, pull_request]

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Analysing the code with pylint
run: |
python3 tests/flag_attn/test_flash_attention.py
python3 tests/flag_attn/test_piecewise_attention.py
black $(git ls-files '*.py')
pylint $(git ls-files '*.py')
Loading