Skip to content

added changes in task data #243

added changes in task data

added changes in task data #243

Workflow file for this run

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