Skip to content

Add Pester Test to Check for Duplicate Function Definitions #1928

Add Pester Test to Check for Duplicate Function Definitions

Add Pester Test to Check for Duplicate Function Definitions #1928

Workflow file for this run

name: Pode CI Coverage
on:
push:
branches:
- 'master'
- 'develop'
paths:
- 'src/**'
- 'tests/**'
- 'pode.build.ps1'
- '.github/workflows/ci-coverage.yml'
pull_request:
branches:
- '*'
paths:
- 'src/**'
- 'tests/**'
- 'pode.build.ps1'
- '.github/workflows/ci-coverage.yml'
env:
INVOKE_BUILD_VERSION: '5.11.1'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check PowerShell version
shell: pwsh
run: |
$PSVersionTable.PSVersion
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install Invoke-Build
shell: pwsh
run: |
Install-Module -Name InvokeBuild -RequiredVersion $env:INVOKE_BUILD_VERSION -Force
- name: Run Pester Tests
shell: pwsh
env:
PODE_COVERALLS_TOKEN: ${{ secrets.PODE_COVERALLS_TOKEN }}
PODE_RUN_CODE_COVERAGE: false
run: |
Invoke-Build Test