Add VPNIPsec Phase1/Phase2 all parameter #275
Workflow file for this run
This file contains hidden or 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: PSScriptAnalyzer | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: Run PSScriptAnalyzer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: lint | |
| uses: alagoutte/github-action-psscriptanalyzer@master | |
| with: | |
| sendComment: true | |
| failOnErrors: true | |
| failOnWarnings: false | |
| failOnInfos: false | |
| repoToken: ${{ secrets.GITHUB_TOKEN }} | |
| settingsPath: .github/workflows/PSScriptAnalyzerSettings.psd1 |