mirror of
https://github.com/joomla-docker/docker-joomla.git
synced 2024-11-16 18:15:17 +00:00
22 lines
425 B
YAML
22 lines
425 B
YAML
|
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" ]
|