Adding support for Azure OpenAI Deployment Types (Global Standard, Standard, Provisioned) #886
Workflow file for this run
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 AZD template | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "infra/**" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "infra/**" | |
workflow_dispatch: | |
jobs: | |
bicep: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build Bicep for linting | |
uses: azure/CLI@v2 | |
with: | |
inlineScript: | | |
export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 | |
az config set bicep.use_binary_from_path=false && az bicep build -f infra/main.bicep --stdout | |
psrule: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run PSRule analysis | |
uses: microsoft/[email protected] | |
with: | |
modules: PSRule.Rules.Azure | |
baseline: Azure.Pillar.Security | |
inputPath: infra/*.test.bicep | |
outputFormat: Sarif | |
outputPath: reports/ps-rule-results.sarif | |
summary: true | |
continue-on-error: true | |
env: | |
PSRULE_CONFIGURATION_AZURE_BICEP_FILE_EXPANSION: 'true' | |
PSRULE_CONFIGURATION_AZURE_BICEP_FILE_EXPANSION_TIMEOUT: '30' | |
- name: Upload results to security tab | |
uses: github/codeql-action/upload-sarif@v3 | |
if: github.repository == 'Azure-Samples/azure-search-openai-demo' | |
with: | |
sarif_file: reports/ps-rule-results.sarif |