Files
yoga/.github/workflows/validate-python.yml
2022-12-23 05:20:51 -08:00

22 lines
323 B
YAML

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 }}