Merge pull request #10 from alhdo/main #14
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: Functional Test Windows | |
on: [ push ] | |
jobs: | |
test: | |
name: Functional Test Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Install PSScriptAnalyzer | |
shell: pwsh | |
run: | | |
if (-not(Get-Module -ListAvailable -Name PSScriptAnalyzer)) { | |
Install-Module -Name PSScriptAnalyzer -Scope CurrentUser -force | |
} | |
- name: Run RPort Server | |
shell: pwsh | |
run: .github/scripts/run_rport_server.ps1 | |
- name: Functional Windows Test | |
shell: pwsh | |
run: .github/scripts/functional_test.ps1 |