Rename upstreams dependencies #1
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: Verify powershell scripts all have the correct permission | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| jobs: | |
| test-pester: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Check git HEAD to make sure all root powershell scripts have execute permissions | |
| shell: pwsh | |
| run: | | |
| exit (git ls-tree HEAD | |
| | Where-Object { $_.EndsWith('.ps1') -and $_.StartsWith('100644') } | |
| | ForEach-Object { $_.Split("`t")[1] } | |
| ).Length |