Skip to content

Commit

Permalink
Add Github Action to run PSRule
Browse files Browse the repository at this point in the history
  • Loading branch information
rohancragg committed Jul 6, 2023
1 parent f05583f commit 569bc2b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/repository.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#
# Analyze repository with PSRule
#

# 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:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
analyze:
name: Analyze repository
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run PSRule analysis
uses: Microsoft/[email protected]
with:
modules: PSRule.Rules.Azure

0 comments on commit 569bc2b

Please sign in to comment.