mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 14:59:39 +00:00
Some checks failed
CodeQL analysis / CodeQL analysis (push) Has been cancelled
This removes Node.js 16 deprecation warnings
32 lines
629 B
YAML
32 lines
629 B
YAML
name: Manifest config tests
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- 'versions-manifest.json'
|
|
|
|
jobs:
|
|
RunTests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Install Pester
|
|
shell: pwsh
|
|
run: |
|
|
Install-Module Pester -Force -Scope CurrentUser
|
|
|
|
- name: Run tests
|
|
shell: pwsh
|
|
run: |
|
|
Import-Module Pester
|
|
Invoke-Pester -Configuration @{
|
|
Run = @{
|
|
Path = "tests/ManifestConfig.Tests.ps1"
|
|
Exit = $true
|
|
}
|
|
} |