Skip to content

Commit

Permalink
add action for testing cross-xplat import
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmelton committed Jan 20, 2021
1 parent cc29394 commit eb2e9bb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/testimport.yml
@@ -0,0 +1,19 @@
name: test import
on:
push:
branches: master

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: Import-Module ./src/Thycotic.SecretServer.psd1 -ErrorAction Stop;

0 comments on commit eb2e9bb

Please sign in to comment.