miktex-kiss-repo

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

commit 151869e1fc748b91aa9e85c3a8d90733a690bc3a
parent 7378ed529aa7b65e6b6434334b614a325ee65b17
Author: aabacchus <ben@bvnf.space>
Date:   Thu, 13 May 2021 02:21:00 +0100

add shellcheck workflow

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

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