Skip to content

Codex graph: click a node to highlight its edges 3 hops out, color-coded by type #14

Codex graph: click a node to highlight its edges 3 hops out, color-coded by type

Codex graph: click a node to highlight its edges 3 hops out, color-coded by type #14

Workflow file for this run

name: CI
# PRs only — pushes to main run the test job inside deploy.yml instead.
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build
- name: Format Check
run: dotnet format