mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Add CI check for spec yamls (#10530)
This is to prevent merging broken yamls.
This commit is contained in:
parent
b857fee61f
commit
296b70cda3
1 changed files with 49 additions and 0 deletions
49
.github/workflows/test-yml-specs.yml
vendored
Normal file
49
.github/workflows/test-yml-specs.yml
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
name: Test yml specs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- patch-*
|
||||
paths:
|
||||
- 'ee/cis/**.yml'
|
||||
- '.github/workflows/test-yml-specs.yml'
|
||||
pull_request:
|
||||
paths:
|
||||
- 'ee/cis/**.yml'
|
||||
- '.github/workflows/test-yml-specs.yml'
|
||||
workflow_dispatch: # Manual
|
||||
|
||||
# This allows a subsequently queued workflow run to interrupt previous runs
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id}}
|
||||
cancel-in-progress: true
|
||||
|
||||
defaults:
|
||||
run:
|
||||
# fail-fast using bash -eo pipefail. See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
|
||||
shell: bash
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
test-yml-specs:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
go-version: ['^1.19.4']
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Install Go
|
||||
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2
|
||||
|
||||
- name: Run apply spec tests
|
||||
run: |
|
||||
go test -v ./pkg/spec/...
|
||||
Loading…
Reference in a new issue