Skip to content

Ignore ruff and yapf formatting for the experimental directory. #81

Ignore ruff and yapf formatting for the experimental directory.

Ignore ruff and yapf formatting for the experimental directory. #81

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 .