Skip to content

Adjustment auth in commands #15

Adjustment auth in commands

Adjustment auth in commands #15

Workflow file for this run

name: Check code format
on:
pull_request:
branches:
- main
jobs:
black-format:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Black format check
uses: psf/black@stable
with:
options: "--check --verbose"
src: "./src/main.py"