Skip to content

Commit 51a4ceb

Browse files
Fix major CI/CD compilation and clippy issues, resolve test structure
Co-authored-by: morningstarxcdcode <[email protected]>
1 parent 656a06d commit 51a4ceb

19 files changed

+75
-5692
lines changed

.github/workflows/automated-security.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ permissions:
2525
actions: read
2626
checks: write
2727
pull-requests: write
28-
- dependencies-only
2928

3029
env:
3130
CARGO_TERM_COLOR: always

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,15 @@ models/*.safetensors
6767
# Cache directories
6868
.cache/
6969
.cargo-cache/
70+
__pycache__/
71+
*.pyc
72+
*.pyo
73+
*.pyd
74+
.Python
75+
node_modules/
76+
.npm/
77+
.yarn/
78+
package-lock.json
7079

7180
# Local development stuff
7281
local/

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Multi-stage build for Universal AI Governor
2-
FROM rust:1.75 as rust-builder
2+
FROM rust:1.80 as rust-builder
33

44
WORKDIR /app
55
COPY Cargo.toml Cargo.lock ./
@@ -10,7 +10,7 @@ COPY benches/ ./benches/
1010
RUN cargo build --release
1111

1212
# Go builder stage
13-
FROM golang:1.21 as go-builder
13+
FROM golang:1.23 as go-builder
1414

1515
WORKDIR /app
1616
COPY go.mod go.sum ./

0 commit comments

Comments
 (0)