From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1413555-garchives=archives.gentoo.org@lists.gentoo.org>
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 F0FB7158094
	for <garchives@archives.gentoo.org>; Thu, 30 Jun 2022 16:11:33 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 2A7BEE0A97;
	Thu, 30 Jun 2022 16:11:32 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 C5723E0A94
	for <gentoo-commits@lists.gentoo.org>; Thu, 30 Jun 2022 16:11:31 +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 D3CAB34112B
	for <gentoo-commits@lists.gentoo.org>; Thu, 30 Jun 2022 16:11:30 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 02DAE51F
	for <gentoo-commits@lists.gentoo.org>; Thu, 30 Jun 2022 16:11:29 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1656605482.902b5e71fc44139129ff9514868b6438da26e721.sam@gentoo>
Subject: [gentoo-commits] repo/proj/prefix:master commit in: .github/workflows/
X-VCS-Repository: repo/proj/prefix
X-VCS-Files: .github/workflows/scripts.yml
X-VCS-Directories: .github/workflows/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 902b5e71fc44139129ff9514868b6438da26e721
X-VCS-Branch: master
Date: Thu, 30 Jun 2022 16:11:29 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 7fe1cc0e-01c2-4c02-a4d6-e643385563b4
X-Archives-Hash: 6074c70acf78e8757eb3404202d2f905

commit:     902b5e71fc44139129ff9514868b6438da26e721
Author:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Jun 30 12:52:05 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jun 30 16:11:22 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=902b5e71

CI: add ShellCheck

Signed-off-by: Anna Vyalkova <cyber+gentoo <AT> sysrq.in>
Closes: https://github.com/gentoo/prefix/pull/10
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .github/workflows/scripts.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/scripts.yml b/.github/workflows/scripts.yml
index e845df4160..461bd8d036 100644
--- a/.github/workflows/scripts.yml
+++ b/.github/workflows/scripts.yml
@@ -17,3 +17,7 @@ jobs:
         for script in scripts/**/*.sh; do
           bash -n "${script}"
         done
+    - name: Test scripts with ShellCheck
+      uses: ludeeus/action-shellcheck@1.1.0
+      with:
+        scandir: "./scripts"