/actions

Shared actions for validation and artifact generation

Primary LanguagePythonMIT LicenseMIT

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