18 lines
386 B
YAML
18 lines
386 B
YAML
|
---
|
||
|
when:
|
||
|
- event: [pull_request, tag]
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
|
||
|
steps:
|
||
|
- name: git-spaces
|
||
|
image: quay.io/thegeeklab/alpine-tools
|
||
|
commands:
|
||
|
- git diff-tree --check $(git hash-object -t tree /dev/null) HEAD
|
||
|
|
||
|
- name: packer
|
||
|
image: docker.io/hashicorp/packer
|
||
|
commands:
|
||
|
- packer fmt -recursive -check -diff .
|