Skip to content

Merge pull request #212 from Azure/updating-tooling-script #28

Merge pull request #212 from Azure/updating-tooling-script

Merge pull request #212 from Azure/updating-tooling-script #28

---
name: Validate dev-infrastructure
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- 'dev-infrastructure/**'
jobs:
validate_bicep:
permissions:
contents: 'read'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 1
sparse-checkout: dev-infrastructure
- name: 'az bicep format and lint'
working-directory: './dev-infrastructure'
run: |
az bicep version
make fmt
make lint
- name: Check for uncommitted changes
working-directory: './dev-infrastructure'
run: |
git diff --exit-code || (echo "::error::Uncommitted changes detected in bicep templates" && exit 1)