26 lines
442 B
YAML
26 lines
442 B
YAML
name: infra-validate
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install pinned tools
|
|
uses: jdx/mise-action@v4.2.3
|
|
with:
|
|
install: true
|
|
cache: true
|
|
|
|
- name: Validate infrastructure source
|
|
env:
|
|
VALIDATION_PROFILE: full
|
|
run: make check
|