Add a bit of CI.

This commit is contained in:
Robert de Bock 2021-09-15 09:56:27 +02:00
parent 1f01ba1aa3
commit a392232a3c
2 changed files with 27 additions and 0 deletions

15
.github/workflows/shellcheck.yml vendored Normal file
View File

@ -0,0 +1,15 @@
on:
push:
branch:
- master
name: 'Trigger: Push action'
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master

12
.github/workflows/yamllint.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: 'Yamllint GitHub Actions'
on:
- pull_request
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Yamllint'
uses: karancode/yamllint-github-action@master