The following pull request was submitted through Github.
It can be accessed and reviewed at: https://github.com/lxc/pylxd/pull/439

This e-mail was sent by the LXC bot, direct replies will not reach the author
unless they happen to be subscribed to this list.

=== Description (from pull-request) ===

From 90a72f6e930e4201aecd4cb4ab8a237bd9b039b6 Mon Sep 17 00:00:00 2001
From: Alberto Donato <alberto.don...@canonical.com>
Date: Fri, 11 Dec 2020 15:25:28 +0100
Subject: [PATCH] add linter for shell scripts

---
 .github/workflows/ci.yml | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f3cee93e..52308280 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -9,7 +9,7 @@ on:
       - master
 
 jobs:
-  lint:
+  lint-python:
     runs-on: ubuntu-latest
     steps:
     - name: Repository checkout
@@ -24,10 +24,19 @@ jobs:
       run: |
         pip install --upgrade pip tox
 
-    - name: Lint
+    - name: Lint Python files
       run: |
         tox -e lint
 
+  lint-shell:
+    runs-on: ubuntu-latest
+    steps:
+    - name: Repository checkout
+      uses: actions/checkout@v2
+
+    - name: Lint shell files
+      uses: ludeeus/action-shellcheck@master
+
   test:
     runs-on: ubuntu-latest
     strategy:
_______________________________________________
lxc-devel mailing list
lxc-devel@lists.linuxcontainers.org
http://lists.linuxcontainers.org/listinfo/lxc-devel

Reply via email to