mirror of
https://github.com/actions/python-versions.git
synced 2025-04-06 07:19:41 +00:00
Add support for unstable Python versions (#38)
* Add support of unstable versions to package generation (#2) * Add support of symver versions to Python setup scripts and tests Co-authored-by: Maksim Petrov <47208721+vmapetr@users.noreply.github.com> Co-authored-by: MaksimZhukov <v-mazhuk@microsoft.com> Co-authored-by: Maxim Lobanov <v-malob@microsoft.com>
This commit is contained in:
32
.github/workflows/manifest-config-validation.yml
vendored
Normal file
32
.github/workflows/manifest-config-validation.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
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@v2
|
||||
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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user