We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/awslabs/mcp-server-for-oscal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build.yml•1.39 KiB
# 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"
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
pip install -U hatch
hatch run release
- 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