Return HTTP 405 for GET and DELETE on @mcp/protocol #1378
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: guillotina | |
| on: [push] | |
| jobs: | |
| # Job to run pre-checks | |
| pre-checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12'] | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install package | |
| run: | | |
| pip install $(grep -P 'flake8|black|isort' contrib-requirements.txt) | |
| - name: Run pre-checks | |
| run: | | |
| flake8 guillotina --config=setup.cfg | |
| isort --check-only guillotina/ | |
| black --check --verbose guillotina | |
| # Job to run tests | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ['3.10', '3.11', '3.12'] | |
| database: ["DUMMY", "postgres", "cockroachdb"] | |
| db_schema: ["custom", "public"] | |
| exclude: | |
| - database: "DUMMY" | |
| db_schema: "custom" | |
| - database: "cockroachdb" | |
| db_schema: "custom" | |
| # Set environment variables | |
| env: | |
| DATABASE: ${{ matrix.database }} | |
| DB_SCHEMA: ${{ matrix.db_schema }} | |
| MEMCACHED: "localhost:11211" | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install the package | |
| run: | | |
| pip install $(grep "Cython" requirements.txt) | |
| pip install -r requirements.txt | |
| pip install -r contrib-requirements.txt | |
| pip install -e .[test] | |
| pip install -e .[testdata] | |
| - name: Start memcached image | |
| uses: niden/actions-memcached@v7 | |
| - name: Check mypy | |
| run: | | |
| mypy --config-file setup.cfg guillotina/ | |
| - name: Run tests | |
| run: | | |
| pytest -rfE --reruns 2 --cov=guillotina -s --tb=native -v --cov-report xml --cov-append guillotina | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v1 | |
| with: | |
| file: ./coverage.xml | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.11" | |
| - name: Install docs dependencies | |
| run: | | |
| pip install -r requirements.txt | |
| pip install -r docs-requirements.txt | |
| pip install -e . | |
| - name: Generate LLM and crawler assets | |
| run: | | |
| python docs/scripts/generate_llms_assets.py | |
| - name: Build documentation | |
| run: | | |
| python -m sphinx -b html docs/source docs/build/html | |
| - name: Validate llms assets | |
| run: | | |
| python docs/scripts/check_llms_assets.py --html-root docs/build/html | |
| - name: Check external links | |
| continue-on-error: true | |
| run: | | |
| python -m sphinx -b linkcheck docs/source docs/build/linkcheck |