Add gpt-35-turbo model deployment to v1 Bicep and Terraform #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate IaC - Azure Bicep | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'IaC/Bicep/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'IaC/Bicep/**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
bicep-v1: | |
name: 'Validate Bicep - v1' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bicep | |
uses: anthony-c-martin/[email protected] | |
- name: Bicep Lint | |
run: | | |
bicep lint deploy.bicep | |
working-directory: IaC/Bicep/v1 | |
- name: Bicep Build | |
run: | | |
bicep build deploy.bicep | |
working-directory: IaC/Bicep/v1 | |
bicep-v2: | |
name: 'Validate Bicep - v2' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Bicep | |
uses: anthony-c-martin/[email protected] | |
- name: Bicep Lint | |
run: | | |
bicep lint deploy.bicep | |
working-directory: IaC/Bicep/v2 | |
- name: Bicep Build | |
run: | | |
bicep build deploy.bicep | |
working-directory: IaC/Bicep/v2 | |