41 lines
827 B
YAML
41 lines
827 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: check
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: whitespace
|
||
|
image: thegeeklab/alpine-tools
|
||
|
commands:
|
||
|
- git diff-tree --check $(git hash-object -t tree /dev/null) HEAD
|
||
|
|
||
|
- name: packer
|
||
|
image: hashicorp/packer
|
||
|
commands:
|
||
|
- packer fmt -recursive -check -diff .
|
||
|
|
||
|
- name: markdownlint
|
||
|
image: thegeeklab/markdownlint-cli
|
||
|
commands:
|
||
|
- markdownlint 'README.md'
|
||
|
|
||
|
- name: spellcheck
|
||
|
image: thegeeklab/alpine-tools
|
||
|
commands:
|
||
|
- spellchecker --files 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions
|
||
|
environment:
|
||
|
FORCE_COLOR: true
|
||
|
|
||
|
trigger:
|
||
|
ref:
|
||
|
- refs/heads/main
|
||
|
- refs/tags/**
|
||
|
- refs/pull/**
|
||
|
|
||
|
---
|
||
|
kind: signature
|
||
|
hmac: 198cfa135666f3da049d67fb619d2438a9770b2ecad822bb040b47ac228c518b
|