Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 8 additions & 14 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
name: CI
on: [push, pull_request]
on:
pull_request:
workflow_dispatch:
permissions:
checks: write
pull-requests: write
jobs:
test:
name: Run Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Test
shell: pwsh
run: ./build.ps1 -Task Test -Bootstrap

ci:
uses: PSInclusive/.github/.github/workflows/ModuleCI.yml@main
10 changes: 10 additions & 0 deletions .github/workflows/PublishModule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Publish Module
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
uses: PSInclusive/.github/.github/workflows/PublishModule.yml@main
secrets: inherit
2 changes: 1 addition & 1 deletion requirements.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Target = 'CurrentUser'
}
'Pester' = @{
Version = '5.4.0'
Version = '5.7.1'
Parameters = @{
SkipPublisherCheck = $true
}
Expand Down