From c98a6f1cbec3103f625212c7b60ac11a6a77896a Mon Sep 17 00:00:00 2001 From: Joonas Rautiola Date: Thu, 1 Jun 2023 11:22:02 +0300 Subject: [PATCH 1/2] update max line-length in lint --- .github/workflows/lint.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e4508a4..415a3b8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,8 +6,12 @@ jobs: steps: - uses: actions/checkout@v3 - uses: psf/black@stable + with: + options: "--check --line-length=100" ruff: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: chartboost/ruff-action@v1 + with: + args: "--line-length=100" From 5e3091e666dd8a5a9d0ad3b61658707966935e85 Mon Sep 17 00:00:00 2001 From: Joonas Rautiola Date: Thu, 1 Jun 2023 11:28:38 +0300 Subject: [PATCH 2/2] Update lint.yml --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 415a3b8..6c450a4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@v3 - uses: psf/black@stable with: - options: "--check --line-length=100" + options: "--check --line-length=100 --verbose" ruff: runs-on: ubuntu-latest steps: