Skip to content

Add shebang to main.py and clarify supported versions of Python #104

Add shebang to main.py and clarify supported versions of Python

Add shebang to main.py and clarify supported versions of Python #104

Workflow file for this run

name: black
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Black
run: pip install black
- name: Run black --check .
run: black --check .