docs: update New-TssSession reference for v0.62.0 (OtpCode + SkipCert… #402
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: test import | |
| on: | |
| push: | |
| branches: dev | |
| pull_request: | |
| branches: dev | |
| jobs: | |
| build: | |
| name: Module imports on all platforms | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Perform the import | |
| shell: pwsh | |
| run: | | |
| Install-Module InvokeBuild -Force | |
| Invoke-Build -file ./build.ps1 -Configuration Debug | |
| Import-Module ./src/Thycotic.SecretServer.psd1 -ErrorAction Stop; |