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: "execution policy CI workflow " | |
on: | |
push: | |
branches: [ test ] | |
jobs: | |
windows-latest-pwsh-scripts: | |
name: "pwsh scripts - windows-latest " | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: "powershell version" | |
run: | | |
$PSVersionTable | |
pwsh | |
- name: "test verbose" | |
run: .\scripts\Test_Verbose.ps1 | |
shell: pwsh | |
- name: "windows version" | |
run: .\scripts\Windows_Version.ps1 | |
shell: pwsh | |
- name: "Set PowerShell execution policy" | |
run: | | |
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser | |
- name: "Run PowerShell script that retrieves and sets the execution policy for the script runner" | |
run: | | |
& "retrieves_and.ps1" | |
- name: "Run PowerShell script that retrieves and sets the execution policy for the script runner" | |
run: | | |
& "retrieves_and_sets_the_execution_policy_for_the_script_runner.ps1" | |
- name: "Run PowerShell script that retrieves and sets the execution policy for the script runner - scripts dir" | |
run: | | |
& "$PWD\scripts\retrieves and sets the execution policy for the script runner.ps1" | |
- name: "retrieves and sets the execution policy for the script runner " | |
run: '.\scripts\retrieves and sets the execution policy for the script runner.ps1' | |
shell: pwsh | |