We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/last9/last9-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test.yaml•705 B
# .github/workflows/test.yaml
name: Tests
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
permissions:
contents: read
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v -race ./...
env:
# Integration tests will be skipped if TEST_REFRESH_TOKEN is not set
TEST_REFRESH_TOKEN: ${{ secrets.TEST_REFRESH_TOKEN }}