Skip to content

fix(mcp): skip project filter for scope=personal with no explicit project #506

fix(mcp): skip project filter for scope=personal with no explicit project

fix(mcp): skip project filter for scope=personal with no explicit project #506

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.10"
- name: Run unit tests
run: go test ./...
e2e-tests:
name: E2E Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.10"
- name: Run e2e tests
run: go test -tags e2e ./internal/server/...