Format the python matching internal linter

This commit is contained in:
Nick Gerleman
2022-12-23 05:20:51 -08:00
parent 51a2a3856e
commit 676fa1fbf3
3 changed files with 48 additions and 1 deletions

21
.github/workflows/validate-python.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Python
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: black --check
uses: ./.github/actions/black
with:
directory: ${{ github.workspace }}