Skip to content

Build - refs/heads/main #304

Build - refs/heads/main

Build - refs/heads/main #304

Workflow file for this run

name: Build
run-name: Build - ${{ github.ref }}
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint Bicep files
shell: pwsh
run: Get-ChildItem -Recurse | Where-Object { $_.Name -like '*.bicep' } | ForEach-Object { bicep build $_.FullName }