Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.28 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.28 KB

Compspec Actions

These are shared GitHub actions for plugins and compspec libraries (and other parties of interest!) to use for validating and generating compatibility specifications. We currently include:

Usage

Validate Schema

This is how you can use the validate schema action.

name: actions test
on:
  pull_request: []

jobs:
  validate-schema:
    name: Validate schema
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Repository
        uses: actions/checkout@v4
      - name: Validate Schema
        uses: compspec/actions/validate-schema@main
        with:
          schema: ./compspec-ior/schema.json

License

HPCIC DevTools is distributed under the terms of the MIT license. All new contributions must be made under this license.

See LICENSE, COPYRIGHT, and NOTICE for details.

SPDX-License-Identifier: (MIT)

LLNL-CODE- 842614