You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
802 B
YAML
24 lines
802 B
YAML
name: Validate manifests
|
|
|
|
on:
|
|
workflow_dispatch
|
|
|
|
jobs:
|
|
validation:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Validate go-versions manifest
|
|
shell: pwsh
|
|
run: .\packages-generation\manifest-validator.ps1 -ManifestUrl https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json
|
|
|
|
- name: Validate node-versions manifest
|
|
shell: pwsh
|
|
run: .\packages-generation\manifest-validator.ps1 -ManifestUrl https://raw.githubusercontent.com/actions/node-versions/main/versions-manifest.json
|
|
|
|
- name: Validate python-versions manifest
|
|
shell: pwsh
|
|
run: .\packages-generation\manifest-validator.ps1 -ManifestUrl https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
|