Skip to content

Fix code snipptes and formatting in README.md #4

Fix code snipptes and formatting in README.md

Fix code snipptes and formatting in README.md #4

Workflow file for this run

name: "Check Format"
on:
# check formatting on any push to main and any open pull request
push:
branches:
- all
pull_request: {}
jobs:
black:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Black Code Formatter
uses: lgeiger/[email protected]
with:
args: ". --check"