From a2be3714b01cea265762645c552c67b64d7c33a3 Mon Sep 17 00:00:00 2001 From: Alex Kennedy Date: Tue, 2 May 2023 08:49:36 -0700 Subject: [PATCH] cicd(lint): Update linter (black) GHA --- .github/workflows/lint.yml | 8 +++----- .github/workflows/publish.yml | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 32c9f02..a9cdc4b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,11 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source Code - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/checkout@v3 - name: Lint (black) uses: psf/black@stable with: - args: "./ally --check" - + options: "--check --verbose" + src: "./ally" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ed54276..c25ce0b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v2 - name: Install tools