Skip to content

Merge pull request #35 from rrooggiieerr/dependabot/github_actions/ac… #48

Merge pull request #35 from rrooggiieerr/dependabot/github_actions/ac…

Merge pull request #35 from rrooggiieerr/dependabot/github_actions/ac… #48

Workflow file for this run

name: Check Python code format
on: [push]
jobs:
linter_name:
name: runner / isort & black formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Check files using the isort import sorter
uses: isort/isort-action@v1
with:
configuration: "--profile black --check-only"
requirements-files: "requirements.txt"
- name: Check files using the black formatter
uses: psf/black@stable
with:
options: "--check"
src: "."