Skip to content

Commit

Permalink
Add curl to build images
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Hunt committed Jan 4, 2024
1 parent bb1fdc1 commit 46992e3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/powershell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ jobs:
name: build
path: publish

- name: Install Curl
shell: pwsh
run: |
apt-get update
apt-get install curl -y
- uses: testspace-com/setup-testspace@v1
with:
domain: ${{github.repository_owner}}
Expand Down
4 changes: 1 addition & 3 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,7 @@ function Build {
function Test {
param ()

if ($null -eq (Get-Module Pester -ListAvailable)) {
Install-Module -Name Pester -Confirm:$false -Force
}
Install-Module -Name Pester -MinimumVersion 5.5.0 -Confirm:$false

$config = [PesterConfiguration]::Default
$config.Run.Path = "test"
Expand Down

0 comments on commit 46992e3

Please sign in to comment.