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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9FE2D158012 for ; Tue, 21 Sep 2021 21:01:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 483F9E07F9; Tue, 21 Sep 2021 21:01:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32088E07F9 for ; Tue, 21 Sep 2021 21:01:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDA3F342FE1 for ; Tue, 21 Sep 2021 21:01:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C3AC102 for ; Tue, 21 Sep 2021 21:01:47 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1632257985.6c5b4603d4d76da55c57212fd84449839dcc6736.mattst88@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: .github/workflows/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: .github/workflows/flake.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 6c5b4603d4d76da55c57212fd84449839dcc6736 X-VCS-Branch: master Date: Tue, 21 Sep 2021 21:01:47 +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: b546ff0b-4350-4e90-af50-79cd6a400bcd X-Archives-Hash: 3c67316c50b0dc441e6dd073aca2580e commit: 6c5b4603d4d76da55c57212fd84449839dcc6736 Author: Wolfgang E. Sanyer gmail com> AuthorDate: Tue Sep 21 20:46:29 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Sep 21 20:59:45 2021 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=6c5b4603 Add github action for flake Signed-off-by: Wolfgang E. Sanyer gmail.com> Signed-off-by: Matt Turner gentoo.org> .github/workflows/flake.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/flake.yml b/.github/workflows/flake.yml new file mode 100644 index 0000000..a1a8649 --- /dev/null +++ b/.github/workflows/flake.yml @@ -0,0 +1,20 @@ +name: Code Quality + +on: [push, pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + - name: Install flake + run: | + python -m pip install --upgrade pip + pip install flake8 + - name: Run flake + run: | + flake8 pym