This is an automated email from the ASF dual-hosted git repository. btashton pushed a commit to branch py-style in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit d0488146dc638e1e3fde5a6398cec8a9ce4a9d23 Author: Brennan Ashton <[email protected]> AuthorDate: Sun Apr 4 17:13:32 2021 -0700 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 9cd105e..396337a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,15 +1,15 @@ -name: ❄️ Lint +name: Lint on: [pull_request] 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@v3 env: VALIDATE_YAML: true - FILTER_REGEX_INCLUDE: .*\.github/.* + VALIDATE_PYTHON_BLACK: true
