Skip to content

docs(oscal-glossary): Enhance definitions with NIST SP 800-53r5 details #341

docs(oscal-glossary): Enhance definitions with NIST SP 800-53r5 details

docs(oscal-glossary): Enhance definitions with NIST SP 800-53r5 details #341

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
pull_request:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Validate server.json against MCP Registry schema
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher && sudo mv mcp-publisher /usr/local/bin/
mcp-publisher validate
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
pip install -U hatch
hatch run release
# env:
# PIP_COMPILE_DISABLE: "1"
- name: Upload various test results
uses: actions/upload-artifact@v4
with:
name: coverage
path: private/docs/
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
- name: Upload python packages
uses: actions/upload-artifact@v4
with:
name: python-packages
path: build/
if-no-files-found: error