We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1b8931e + 8035e30 commit 656804dCopy full SHA for 656804d
1 file changed
.github/workflows/azure-bicep-validate.yml
@@ -0,0 +1,21 @@
1
+name: Validate bicep scripts
2
+on:
3
+ workflow_dispatch:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Azure CLI script
19
+ uses: azure/CLI@v2
20
+ with:
21
+ inlineScript: az config set bicep.use_binary_from_path=false && az bicep build -f infra/main.bicep
0 commit comments