Feishu bot test #1
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: 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') |