mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-23 07:40:11 -07:00
17 lines
332 B
YAML
17 lines
332 B
YAML
name: Shellcheck
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run shellcheck.
|
|
run: |
|
|
shopt -s nullglob
|
|
shellcheck */*/build */*/post-install
|
|
curl -X POST -d {} "https://api.netlify.com/build_hooks/${{ secrets.NETLIFY }}"
|