mirror of
https://github.com/actions/versions-package-tools.git
synced 2026-01-09 21:03:13 +08:00
16 lines
348 B
YAML
16 lines
348 B
YAML
name: Validate manifest
|
|
|
|
on:
|
|
workflow_dispatch
|
|
|
|
jobs:
|
|
validation:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Validate Go manifest
|
|
shell: pwsh
|
|
run: .\packages-generation\manifest-validator.ps1 -ManifestUrl https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json
|
|
|