Skip to content

Commit 10db4bd

Browse files
authored
Merge pull request #5 from DevelApp-ai/larsbuch-patch-1
Add GitHub Actions workflow for Jekyll site deployment
2 parents 0055087 + 037bd02 commit 10db4bd

File tree

6 files changed

+1027
-1
lines changed

6 files changed

+1027
-1
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2+
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Build job
26+
build:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v5
33+
- name: Build with Jekyll
34+
uses: actions/jekyll-build-pages@v1
35+
with:
36+
source: ./
37+
destination: ./_site
38+
- name: Upload artifact
39+
uses: actions/upload-pages-artifact@v3
40+
41+
# Deployment job
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A revolutionary approach to code analysis that unifies syntactic ambiguity handl
2323
- **Graph Traversal**: Efficient navigation through complex code structures
2424

2525
### Production Ready
26-
- **Comprehensive Testing**: 16 unit tests covering core functionality, performance, and edge cases
26+
- **Comprehensive Testing**: 47 unit tests covering core functionality, performance, and edge cases
2727
- **Multi-Platform CI/CD**: Automated testing on Windows, Linux, and macOS
2828
- **NuGet Distribution**: Ready-to-use package with complete API documentation
2929
- **Performance Optimized**: Designed for large codebases with minimal GC pressure

_config.yml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Site settings
2+
title: "CognitiveGraph"
3+
description: "High-Performance Zero-Copy Cognitive Graph for Advanced Code Analysis"
4+
url: "https://develapp-ai.github.io"
5+
baseurl: "/CognitiveGraph"
6+
7+
# Theme
8+
remote_theme: pages-themes/[email protected]
9+
plugins:
10+
- jekyll-remote-theme
11+
12+
# Repository information
13+
repository: "DevelApp-ai/CognitiveGraph"
14+
github:
15+
repository_name: "CognitiveGraph"
16+
repository_nwo: "DevelApp-ai/CognitiveGraph"
17+
owner_name: "DevelApp-ai"
18+
19+
# Build settings
20+
markdown: kramdown
21+
highlighter: rouge
22+
kramdown:
23+
input: GFM
24+
hard_wrap: false
25+
26+
# Collections
27+
collections:
28+
docs:
29+
output: true
30+
permalink: /:collection/:name/
31+
32+
# Navigation
33+
navigation:
34+
- title: Home
35+
url: /
36+
- title: Documentation
37+
url: /docs/
38+
- title: API Reference
39+
url: /docs/api-reference/
40+
- title: Examples
41+
url: /examples/
42+
- title: GitHub
43+
url: https://github.com/DevelApp-ai/CognitiveGraph
44+
45+
# Exclude files from processing
46+
exclude:
47+
- vendor/
48+
- Gemfile
49+
- Gemfile.lock
50+
- node_modules/
51+
- "*.csproj"
52+
- "*.sln"
53+
- bin/
54+
- obj/
55+
- packages/
56+
- CognitiveGraph/
57+
- CognitiveGraph.Tests/
58+
- .git/
59+
- .github/
60+
- .gitignore
61+
- GitVersion.yml
62+
63+
# Include files that start with underscores
64+
include:
65+
- _pages

0 commit comments

Comments
 (0)