diff options
| author | Adam Janovsky | 2023-02-04 09:18:20 +0100 |
|---|---|---|
| committer | Adam Janovsky | 2023-02-04 09:18:20 +0100 |
| commit | 20bcdb76f6f693310af99d7a12402157166664d1 (patch) | |
| tree | d595498b4064a713b51f5e06b1bbabdffe9f6131 | |
| parent | 3087b801ef9dbf753dd6230685d138ea1545f1b8 (diff) | |
| download | sec-certs-20bcdb76f6f693310af99d7a12402157166664d1.tar.gz sec-certs-20bcdb76f6f693310af99d7a12402157166664d1.tar.zst sec-certs-20bcdb76f6f693310af99d7a12402157166664d1.zip | |
fix error in new_lint.yml
| -rw-r--r-- | .github/workflows/new_lint.yml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/new_lint.yml b/.github/workflows/new_lint.yml index 0a1a6ca0..bf9232eb 100644 --- a/.github/workflows/new_lint.yml +++ b/.github/workflows/new_lint.yml @@ -13,10 +13,7 @@ jobs: - name: Install dependencies run: pip install -r requirements/dev_requirements.txt - name: Run Black - run: black - with: - version: "23.1.0" - options: "--check --target-version py38" + run: black . --check --target-version py38 ruff: runs-on: ubuntu-latest steps: @@ -27,7 +24,7 @@ jobs: - name: Install dependencies run: pip install -r requirements/dev_requirements.txt - name: Run Ruff - run: ruff --format=github . + run: ruff . --format=github mypy: runs-on: ubuntu-latest steps: |
