Skip to content

Update __main__.py

Update __main__.py #4

Workflow file for this run

name: Pre-commit
on:
push:
branches: [ "main" ]
paths-ignore:
- '**.md'
- '.github/**'
pull_request:
branches: [ "main" ]
paths-ignore:
- '**.md'
- '.github/**'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x' # Specify the Python version
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files