Skip to content

Revving Version

Revving Version #334

Workflow file for this run

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;