From 5787c26159046454bed284010e55bcdc6bb74dab Mon Sep 17 00:00:00 2001 From: Brennan Ashton Date: Sun, 4 Apr 2021 17:13:32 -0700 Subject: [PATCH] Add black linter for python --- .github/workflows/lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 94256ee1a..4adc31409 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -name: ❄️ Lint +name: Lint on: [pull_request] @@ -7,13 +7,13 @@ concurrency: cancel-in-progress: true jobs: - yamllint: - name: 🍺 YAML + lint: + name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: 🧹 YAML Lint + - name: YAML Lint uses: github/super-linter@v4 env: VALIDATE_YAML: true - FILTER_REGEX_INCLUDE: .*\.github/.* + VALIDATE_PYTHON_BLACK: true