From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1A8BD15808B for ; Mon, 21 Feb 2022 03:51:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 164B8E0974; Mon, 21 Feb 2022 03:51:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E537DE0974 for ; Mon, 21 Feb 2022 03:51:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DA2C134309A for ; Mon, 21 Feb 2022 03:51:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DD7E2EA for ; Mon, 21 Feb 2022 03:51:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1645415454.ea97f7d77fd80ff9c380f77c64ffa9060e6a41cb.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: .github/workflows/ X-VCS-Repository: proj/portage X-VCS-Files: .github/workflows/black.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ea97f7d77fd80ff9c380f77c64ffa9060e6a41cb X-VCS-Branch: master Date: Mon, 21 Feb 2022 03:51:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c74f6b51-1692-4628-9aa2-0c855728f685 X-Archives-Hash: 35b58cc97c51fcc14ba1487a3d23b4a3 commit: ea97f7d77fd80ff9c380f77c64ffa9060e6a41cb Author: John Helmert III gentoo org> AuthorDate: Thu Feb 10 01:48:10 2022 +0000 Commit: Sam James gentoo org> CommitDate: Mon Feb 21 03:50:54 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ea97f7d7 CI: also lint python files that Black doesn't automatically detect Signed-off-by: John Helmert III gentoo.org> Closes: https://github.com/gentoo/portage/pull/787 Signed-off-by: Sam James gentoo.org> .github/workflows/black.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index b04fb15cb..d3c3fa3e1 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -7,4 +7,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: "Collect stragglers that Black misses" + id: stragglers + run: | + echo "::set-output name=missed::$( + find bin repoman runtests -type f -not -name '*.py' -not -name '*.sh' | \ + xargs grep -l '#!/usr/bin/env python' | tr $'\n' ' ')" - uses: psf/black@stable + with: + src: . ${{ steps.stragglers.outputs.missed }}