diff options
author | Kyomotoi <[email protected]> | 2021-05-04 14:08:55 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-04 14:08:55 +0800 |
commit | 8e94b4cd4aea1943a9639b900e33fe0fa1de5bb8 (patch) | |
tree | db45465dc590aeda29621ee345a77e83f4bd7d9d /.github | |
parent | aa016e68f5d18526dfc01f18ff66094a71460d31 (diff) | |
download | ATRI-8e94b4cd4aea1943a9639b900e33fe0fa1de5bb8.tar.gz ATRI-8e94b4cd4aea1943a9639b900e33fe0fa1de5bb8.tar.bz2 ATRI-8e94b4cd4aea1943a9639b900e33fe0fa1de5bb8.zip |
🐛 fix nice bug
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5dbff96..55b8998 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,7 +36,11 @@ jobs: POETRY_VIRTUALENVS_CREATE: "false" run: | poetry install - - uses: wearerequired/lint-action@v1 + python -m pip install --upgrade pip + pip install flake8 + + - name: Run Linters + uses: wearerequired/lint-action@v1 with: auto_fix: true black: true |