mirror of
https://github.com/docker-library/ruby.git
synced 2022-11-09 11:41:34 -05:00
22 lines
426 B
YAML
22 lines
426 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" ]
|