8000 [GMLP-3121] Docusign, dropbox, figma, excel, firecrawl resource, scope, outputschema update (#141) · gumloop/guMCP@0d82bd1 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[GMLP-3121] Docusign, dropbox, figma, excel, firecrawl resource, scop… #354

[GMLP-3121] Docusign, dropbox, figma, excel, firecrawl resource, scop…

[GMLP-3121] Docusign, dropbox, figma, excel, firecrawl resource, scop… #354

Workflow file for this run

name: Formatting Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install black
- name: Check formatting with Black
run: |
black --check src/ tests/ scripts/
0