Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,46 +41,3 @@ updates:
github-actions:
patterns:
- "*"

# Version updates for Python packages (uv)
- package-ecosystem: "uv"
directory: "/packages/nvisy-dal"
schedule:
interval: "weekly"
timezone: "Europe/Berlin"
day: "monday"
time: "04:00"
open-pull-requests-limit: 5
labels:
- "chore"
- "python"
commit-message:
prefix: "chore(deps)"
groups:
python-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"

- package-ecosystem: "uv"
directory: "/packages/nvisy-rig"
schedule:
interval: "weekly"
timezone: "Europe/Berlin"
day: "monday"
time: "04:00"
open-pull-requests-limit: 5
labels:
- "chore"
- "python"
commit-message:
prefix: "chore(deps)"
groups:
python-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:
cancel-in-progress: true

jobs:
fmt-rs:
fmt:
name: Format
runs-on: ubuntu-latest
steps:
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Check formatting
run: cargo +nightly fmt --all -- --check

check-rs:
check:
name: Check & Clippy
runs-on: ubuntu-latest
steps:
Expand All @@ -72,10 +72,10 @@ jobs:
- name: Clippy
run: cargo clippy --all-targets --all-features --workspace -- -D warnings

test-rs:
test:
name: Test
runs-on: ubuntu-latest
needs: check-rs
needs: check
env:
POSTGRES_URL: postgresql://postgres:postgres@localhost:5432/postgres
NATS_URL: nats://localhost:4222
Expand Down Expand Up @@ -110,10 +110,10 @@ jobs:
if: always()
run: docker compose -f docker/docker-compose.dev.yml down -v

docs-rs:
docs:
name: Docs
runs-on: ubuntu-latest
needs: check-rs
needs: check
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:
cancel-in-progress: true

jobs:
deny-rs:
deny:
name: Deny
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **nvisy-core** - Shared types and utilities
- **nvisy-nats** - NATS client with JetStream support
- **nvisy-postgres** - PostgreSQL database layer
- **nvisy-rig** - AI services (chat, RAG, embeddings)
- **nvisy-server** - HTTP handlers, middleware, pipeline, and services
- **nvisy-webhook** - Webhook delivery with HTTP client

Expand Down
Loading