Backup Azure Files to Recovery Services Vault #49
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 | |
# | |
name: Analyze repository with PSRule | |
# Run analysis for main or PRs against main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
name: Analyze repository | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run PSRule analysis | |
uses: microsoft/ps-rule@v2.9.0 | |
with: | |
modules: PSRule.Rules.Azure |