Skip to content

Commit

Permalink
Fix mypy action
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Mar 9, 2024
1 parent 0f7ef91 commit 189b43d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/check_and_fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jobs:
with:
python-version: '3.9'
- name: Install dependency
run: |
pip install ruff mypy isort pytest
run: pip install ruff mypy isort pytest
- name: Update emoji.json
run: curl -o src/sticker_convert/resources/emoji.json -L https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json
- name: Ruff check
Expand All @@ -34,7 +33,7 @@ jobs:
pip install .
pip install -r requirements-type.txt
- name: mypy
run: mypy
run: mypy .
- name: ruff format
run: ruff format
- name: isort
Expand Down

0 comments on commit 189b43d

Please sign in to comment.