From a2e75d201fdba21c0de7ef982325f62f7945e387 Mon Sep 17 00:00:00 2001 From: William Palin Date: Mon, 17 Jul 2023 09:36:45 -1000 Subject: [PATCH 1/2] feat(lint.yml): Fix Lint --- .github/workflows/lint.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6c110a0..f2a5a8f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,12 +3,22 @@ name: Lint on: [push, pull_request] jobs: - black: + lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2-beta + - uses: actions/setup-python@v2 with: - python-version: "3.10.2" + # Once codebase is updated, this can easily be changed to any specific version. + python-version: "3.11" + + - name: Flynt f-string Formatter + run: > + flynt . + --line-length=79 + --transform-concats + --fail-on-change + - name: Black Code Formatter uses: psf/black@stable From 2b98a3fd4b444d7f4361f32f93aaa5be4a16a3c6 Mon Sep 17 00:00:00 2001 From: William Palin Date: Mon, 17 Jul 2023 09:37:44 -1000 Subject: [PATCH 2/2] feat(lint.yml): Fix Lint --- .github/workflows/lint.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f2a5a8f..2c203d2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,12 +13,5 @@ jobs: # Once codebase is updated, this can easily be changed to any specific version. python-version: "3.11" - - name: Flynt f-string Formatter - run: > - flynt . - --line-length=79 - --transform-concats - --fail-on-change - - name: Black Code Formatter uses: psf/black@stable