add new script Add-SsoExclusionsFromCSV #19
Workflow file for this run
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
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
# Print versions | |
- name: Powershell Environment | |
shell: pwsh | |
run: | | |
$PSVersionTable | |
# Install TeamViewerPS | |
- name: Install TeamViewerPS | |
shell: pwsh | |
run: | | |
$ProgressPreference='SilentlyContinue' | |
Install-Module TeamViewerPS -Force -SkipPublisherCheck -Scope CurrentUser -Verbose | |
# Run tests | |
- name: Run Pester | |
shell: pwsh | |
run: | | |
$ProgressPreference='SilentlyContinue' | |
Install-Module Pester -Force -SkipPublisherCheck -Scope CurrentUser ` | |
-RequiredVersion 5.1.1 -Verbose | |
Invoke-Pester $env:GITHUB_WORKSPACE -Output Detailed -CI |