Feature: Add support for FTP - Managed API Connections #257
Workflow file for this run
This file contains hidden or 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: Validate Module (Unit Tests) | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| schedule: | |
| - cron: '13 4 * * 1' | |
| jobs: | |
| validate: | |
| name: Run Pester Unit Tests | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup PowerShell module cache | |
| id: cacher | |
| uses: actions/cache@v3 | |
| with: | |
| path: "C:\\Users\\runneradmin\\Documents\\PowerShell\\Modules" | |
| key: ${{ runner.os }}-PSFramework-PSScriptAnalyzer | |
| restore-keys: | | |
| ${{ runner.os }}-PSFramework- | |
| ${{ runner.os }}- | |
| ${{ runner.os }} | |
| - name: Install Prerequisites | |
| if: steps.cacher.outputs.cache-hit != 'true' | |
| run: .\build\vsts-prerequisites.ps1 | |
| shell: pwsh | |
| - name: Validate | |
| run: .\build\vsts-validate.ps1 | |
| shell: pwsh |