From 477e32946ec9e797ff00fbac701df93c39189851 Mon Sep 17 00:00:00 2001 From: runame Date: Thu, 19 Dec 2024 10:55:02 -0800 Subject: [PATCH] Deactivate ruff formatting check from workflow (#65) Summary: Until we make ensure consistent formatting with ruff across internal and open-source code. Pull Request resolved: https://github.com/facebookresearch/optimizers/pull/65 Reviewed By: anana10c Differential Revision: D67462047 Pulled By: tsunghsienlee fbshipit-source-id: 0a5b913d9f994525b4e13ff5b50a75e0e0421d95 --- .github/workflows/format.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 5caa8ca..c8354cc 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -18,10 +18,11 @@ jobs: - name: Run usort check. run: | usort check . - ruff: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: astral-sh/ruff-action@v1 - with: - args: "format --check" + # TODO: make formatting with ruff consistent across internal and open-source code. + # ruff: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - uses: astral-sh/ruff-action@v1 + # with: + # args: "format --check"