-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test (ci): Add execution of tests on Github Actions
- Loading branch information
1 parent
11fb024
commit 40dcdaf
Showing
3 changed files
with
143 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
name: ci-master-pr | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
test-powershell-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' | ||
test-powershell-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' | ||
test-powershell-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' | ||
test-powershell-5-1-windows-2019: | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
powershell -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
powershell -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' | ||
########## | ||
# Docker # | ||
########## | ||
# Get powershell tags: https://mcr.microsoft.com/v2/powershell/tags/list | ||
test-powershell-7-2: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: theohbrothers/docker-powershell:7.2-ubuntu-22.04-git | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
git config --global --add safe.directory '*' | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' | ||
test-powershell-7-3: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: theohbrothers/docker-powershell:7.3-ubuntu-22.04-git | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
git config --global --add safe.directory '*' | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' | ||
test-powershell-7-4: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: theohbrothers/docker-powershell:7.4-ubuntu-22.04-git | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Powershell version | ||
run: | | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command '$PSVersionTable' | ||
- name: Test | ||
run: | | ||
git config --global --add safe.directory '*' | ||
pwsh -NoLogo -NonInteractive -NoProfile -Command './test/test.ps1' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[CmdletBinding()] | ||
param() | ||
|
||
$ErrorActionPreference = 'Stop' | ||
|
||
try { | ||
Push-Location $PSScriptRoot | ||
|
||
# Install Pester if needed | ||
"Checking Pester version" | Write-Host | ||
$pesterMinimumVersion = [version]'4.0.0' | ||
$pesterMaximumVersion = [version]'4.10.1' | ||
$pester = Get-Module 'Pester' -ListAvailable -ErrorAction SilentlyContinue | ||
if (!$pester -or !($pester | ? { $_.Version -ge $pesterMinimumVersion -and $_.Version -le $pesterMaximumVersion })) { | ||
"Installing Pester" | Write-Host | ||
Install-Module -Name 'Pester' -Repository 'PSGallery' -MinimumVersion $pesterMinimumVersion -MaximumVersion $pesterMaximumVersion -Scope CurrentUser -Force | ||
} | ||
Get-Module Pester -ListAvailable | Out-String | Write-Verbose | ||
Import-Module -Name 'Pester' -RequiredVersion '4.10.1' -Force # Force import to ensure environment uses the correct version of Pester | ||
|
||
}catch { | ||
throw | ||
}finally{ | ||
Pop-Location | ||
} |
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