Skip to content

finished python basics #10

finished python basics

finished python basics #10

Workflow file for this run

name: 🖤 Black Formatter
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Black
run: pip install black
- name: Run Black
run: black .