Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/branch-name-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check-branch-name:
runs-on: ubuntu-latest
steps:
- name: Check branch name for main
- name: Check branch name for main
if: github.base_ref == 'main'
run: |
BRANCH_NAME="${{ github.head_ref }}"
Expand Down
5 changes: 5 additions & 0 deletions azure/azure_style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ jobs:
pip install wheel
pip install mypy

# Check if the local repo has a requirements.txt file and install it if present
if [[ -f "requirements.txt" ]]; then
pip install -r requirements.txt
fi

# Run mypy check (should pick up local config from mypy.ini or .mypy.ini if present)
mypy

Expand Down