From b71d9056a113a3b58323e202f8a3a51f24cbd5e5 Mon Sep 17 00:00:00 2001 From: "Yuichiro Tachibana (Tsuchiya)" Date: Wed, 6 Mar 2024 01:56:02 +0900 Subject: [PATCH] Update the CI steps --- .github/workflows/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5cf8c7e5..ea67f329 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -89,11 +89,10 @@ jobs: STREAMLIT_VERSION: ${{ matrix.streamlit-version }} - name: Install dependencies run: poetry install - - name: Lint with black, isort, and flake8 + - name: Run Ruff run: | - poetry run black . --check - poetry run isort . --check --resolve-all-configs - poetry run flake8 + poetry run ruff check --output-format=github . + poetry run ruff format . --check - name: Type checking with mypy run: | poetry run mypy .