Skip to content

Merge pull request #33 from ToshY/dependabot/github_actions/main/pypa… #32

Merge pull request #33 from ToshY/dependabot/github_actions/main/pypa…

Merge pull request #33 from ToshY/dependabot/github_actions/main/pypa… #32

Workflow file for this run

name: Codestyle with Black
on:
push:
branches:
- main
pull_request_target:
branches:
- main
jobs:
black:
name: Run codestyle checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install requirements
run: pip install -r requirements.txt -r requirements.dev.txt
- name: Black check
run: black . --check