Skip to content

Security: Upgrade vulnerable dependencies & align environments #593

Security: Upgrade vulnerable dependencies & align environments

Security: Upgrade vulnerable dependencies & align environments #593

Workflow file for this run

name: run-linters
on: [pull_request]
jobs:
run-black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Debug Message - Check Github branch
run: echo "Current Git branch is ${GITHUB_REF##*/}"
- name: Install Black
run: pip install black==24.3.0
- name: Run black --check . to verify code formatting
run: black --check .