Skip to content

Vis-work.py

Vis-work.py #37

Workflow file for this run

name: Format Python
on: [pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
cache-dependency-path: pyproject.toml
- name: Check formatting
uses: psf/black@stable
with:
options: --check .
version: 24.10.0