File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed
Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 3030 contents : read # for actions/checkout to fetch code
3131 security-events : write # for github/codeql-action/upload-sarif to upload SARIF results
3232 actions : read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
33- runs-on : ubuntu -latest
33+ runs-on : windows -latest
3434 steps :
3535 - uses : actions/checkout@v4
3636
@@ -52,12 +52,12 @@ jobs:
5252 sarif_file : results.sarif
5353
5454 - name : Install Pester
55- shell : pwsh
55+ shell : powershell
5656 run : |
5757 Install-Module -Name Pester -Force -Scope CurrentUser
5858
5959 - name : Run Pester Unit Tests
60- shell : pwsh
60+ shell : powershell
6161 run : |
6262 $modules = Get-ChildItem -Directory -Path ./src
6363 foreach ($module in $modules) {
7070 }
7171 }
7272
73- - name : Run Pester ADServices Integration Tests
74- shell : pwsh
75- run : |
76- $Server = 'localhost:389'
77- $PSCredential = [PSCredential]::new('Administrator', (ConvertTo-SecureString 'Passw0rd' -AsPlainText -Force))
78-
79- .\src\ADServices\Tests\Integration\Invoke-IntegrationTest.ps1 -Server $Server -PSCredential $PSCredential
73+ # TODO: Run Pester integration tests
You can’t perform that action at this time.
0 commit comments