Skip to content

Commit

Permalink
no mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
fboundy committed Dec 22, 2024
1 parent 0aa3f48 commit aa9df6e
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/black-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
echo "Installing tools..."
python -m pip install --upgrade pip
pip install black isort mypy
pip install black isort
# Step 4: Run black and isort to format the code
- name: Run Black and isort
Expand All @@ -34,19 +34,12 @@ jobs:
black .
echo "Running isort..."
isort .
# Step 5: Run mypy for type checking
- name: Run mypy
run: |
echo "Running mypy for type checking..."
mypy .
# Step 6: Commit and push changes if any files were modified
- name: Commit and Push Changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "Configuring git user..."
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
Expand Down

0 comments on commit aa9df6e

Please sign in to comment.