Skip to content

fix format and syntax #1

fix format and syntax

fix format and syntax #1

Workflow file for this run

name: Test
on:
push:
branches:
- 'main'
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Check format
uses: psf/black@stable
with:
options: " -l 120 --check -t py313"
src: "."