From c8c5af8aaf7ebe0c716e39926aec88ec407bc173 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 3 Mar 2021 22:17:08 +0000 Subject: [PATCH] TT#111150 Rename GitHub shellcheck test workflow to shellcheck.yml Rename the workflow, as this is only in charge of running the shellcheck tests. Having a workflow per checker also makes them more modular, and easier to reuse in other projects by simply copying the files around. And makes it easier to see what checks are currently available from the filenames. Rename the job to "test", for correctness, as it has implicit ordering and meaning within the GitHub action built-in stages. Change-Id: I3987fc03111d94a8bc64e9103e43cb4d05925e12 --- .github/workflows/{tests.yml => shellcheck.yml} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename .github/workflows/{tests.yml => shellcheck.yml} (93%) diff --git a/.github/workflows/tests.yml b/.github/workflows/shellcheck.yml similarity index 93% rename from .github/workflows/tests.yml rename to .github/workflows/shellcheck.yml index bdcca58af..a4c5748bc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/shellcheck.yml @@ -1,4 +1,4 @@ -name: Code Testing +name: Shellcheck on: push: @@ -7,9 +7,8 @@ on: - cron: '0 8 * * *' jobs: - shellcheck: + test: runs-on: ubuntu-latest - name: Run shellcheck steps: - name: Checkout source