You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
19 lines
364 B
name: Check Kubernetes YAMLs
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
scan:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Scan valid yaml with kube-linter
|
|
uses: stackrox/kube-linter-action@v1.0.2
|
|
with:
|
|
directory: kube
|
|
config: .kube-linter.yaml
|
|
|