Skip to content

Update UofISplunkCloud.psd1 #25

Update UofISplunkCloud.psd1

Update UofISplunkCloud.psd1 #25

Workflow file for this run

name: Pester Tests
on:
pull_request:
branches:
- main
paths:
- 'src/**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: Install-Module -Name 'Pester' -Force -SkipPublisherCheck
shell: pwsh
- name: Run tests
run: Invoke-Pester -Path './test/' -CI
shell: pwsh