Skip to content

Merge remote-tracking branch 'origin/main' into drewj/ax-exp-hook/1843 #7041

Merge remote-tracking branch 'origin/main' into drewj/ax-exp-hook/1843

Merge remote-tracking branch 'origin/main' into drewj/ax-exp-hook/1843 #7041

Workflow file for this run

name: black
on: [push, pull_request]
permissions:
contents: read
# use workaround due to: https://github.com/psf/black/issues/2079#issuecomment-812359146
jobs:
check-formatting:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install Black
run: pip install 'black==22.6.0'
- name: Run black --check .
run: black --check .