Skip to content

Remove f-string without any placeholders #4

Remove f-string without any placeholders

Remove f-string without any placeholders #4

Workflow file for this run

name: Format codebase
on:
push:
branches: master
pull_request:
jobs:
format:
runs-on: ubuntu-latest
name: Format
steps:
- uses: actions/checkout@v4
- name: Format
uses: astral-sh/ruff-action@v1
with:
args: "format --check"
changed-files: 'true'