kiss-repo

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5bb9bdeffe4de2c58f5f2c6bb05d6d23f405656f
parent 543688940b627207447e4f3c720a5233436d83d2
Author: aabacchus <ben@bvnf.space>
Date:   Mon,  3 May 2021 13:36:22 +0100

Merge branch 'main' of https://github.com/aabacchus/kiss-repo

Diffstat:
A.github/workflows/main.yml | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: Shellcheck +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run shellcheck + run: | + shopt -s nullglob + find -name build -or -name post-install -exec shellcheck {} +