Skip to content

Create sonar-project.properties #13

Create sonar-project.properties

Create sonar-project.properties #13

Workflow file for this run

name: Python Code Formatting with Black
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- name: Check out repository
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
- name: Run Black Check
run: black --check .