Update repo structure to focus on Bicep #45 #49
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
# | |
# Analyze repository with PSRule | |
# | |
# Note: | |
# This workflow is designed to run only in Azure/PSRule.Rules.Azure-quickstart. | |
# You can safely deleted this file if you have templated this repository to your GitHub organization. | |
# For PSRule documentation see: | |
# https://aka.ms/ps-rule | |
# For action details see: | |
# https://aka.ms/ps-rule-action | |
name: Analyze repository | |
# Run for main or PRs against main | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
analyze: | |
name: Analyze repository | |
runs-on: ubuntu-latest | |
if: github.repository == 'Azure/PSRule.Rules.Azure-quickstart' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run PSRule analysis | |
uses: microsoft/ps-rule@v2.9.0 | |
with: | |
modules: PSRule.Rules.MSFT.OSS |