Skip to content

really fix pydantic #11

really fix pydantic

really fix pydantic #11

Workflow file for this run

name: Black Formatting
on:
push:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get Python Version from File
id: python_version
run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
- uses: actions/setup-python@v4
with:
python-version: ${{ steps.python_version.outputs.version }}
- name: Install Dependencies
run: make install
- name: Test Formatting
run: make black_check