32
3
mirror of https://github.com/joomla-docker/docker-joomla.git synced 2024-09-28 04:09:02 +00:00
docker/.github/workflows/verify-templating.yml

22 lines
425 B
YAML
Raw Normal View History

2021-08-26 13:32:42 +00:00
name: Verify Templating
on:
pull_request:
push:
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
jobs:
apply-templates:
name: Check For Uncomitted Changes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Apply Templates
run: ./apply-templates.sh
- name: Check Git Status
run: |
status="$(git status --short)"
[ -z "$status" ]