Skip to content

Commit

Permalink
add names and isort checker
Browse files Browse the repository at this point in the history
  • Loading branch information
TalissaMoura committed Mar 6, 2024
1 parent 78da9b9 commit f7a1ccd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/lint_checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ jobs:
check-lint:
runs-on: ubuntu-latest
steps:
- name: checkout
- uses: actions/checkout@main
- name: setup python
- uses: actions/setup-python@main
with:
python-version: '3.10'
- run: python3 -m pip install pip && python3 -m pip install black
- name: install black and isort
- run: python -m pip install pip && python -m pip install black && pip install isort
- name: check black
- run: python -m black . --check
- name: check isort
- run: python -m isort . --check

0 comments on commit f7a1ccd

Please sign in to comment.