Skip to content

Commit

Permalink
Create validate_catalog.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu authored Jan 24, 2024
1 parent b8c8cfb commit cc2502b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/validate_catalog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Catalog Validation

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Setup dotnet-script
run: dotnet tool install -g dotnet-script
- name: Validate Catalog
run: dotnet script --no-cache ./src/CatalogValidation.csx -- ./docs/Catalog.xml

0 comments on commit cc2502b

Please sign in to comment.