Skip to content

Bump actions/stale from 10.1.1 to 10.2.0 #4

Bump actions/stale from 10.1.1 to 10.2.0

Bump actions/stale from 10.1.1 to 10.2.0 #4

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@v6
- 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: "."