Skip to content

Begin merging production changes #92

Begin merging production changes

Begin merging production changes #92

Workflow file for this run

name: Yapf Format
on: [push, pull_request]
jobs:
yapf:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install yapf toml
- name: Run Yapf
run: |
yapf --diff --recursive .