From 4e492dfa5cd133d94b354d0ddd9b565a3e430bd2 Mon Sep 17 00:00:00 2001 From: Fabrice THIROUX Date: Sun, 22 Sep 2024 16:26:44 +0000 Subject: [PATCH] Create actions.yaml --- .github/workflows/actions.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/actions.yaml diff --git a/.github/workflows/actions.yaml b/.github/workflows/actions.yaml new file mode 100644 index 0000000..bc33aa7 --- /dev/null +++ b/.github/workflows/actions.yaml @@ -0,0 +1,15 @@ +name: actions + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + check: + name: Run Shellcheck + runs-on: ubuntu-latest + steps: + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master