feedsignal/.forgejo/workflows/ci.yml
Austin Schaefer 1a4a72fc27
Some checks failed
CI / check (push) Failing after 26s
Scaffold feedsignal: Rust workspace for LLM-filtered RSS reader
Rust workspace with core (topic-affinity learning engine + relevance
scoring), db (sqlite/sqlx schema + repo), feeds (RSS/Atom fetch), llm
(rig + local Ollama embeddings/completion), and web (axum + Dioxus
fullstack UI, no separate JS stack). Two-stage relevance filtering
(embedding shortlist -> LLM judgment) and an engagement/surprise-based
topic affinity engine with daily decay. All crates compile and core's
affinity engine has passing unit tests; server and wasm client targets
of feedsignal-web both check clean.
2026-08-20 17:04:14 +02:00

36 lines
967 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: docker
container: docker.io/library/rust:1-bookworm
steps:
- uses: actions/checkout@v4
- name: Cache cargo registry and target dir
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Add wasm target
run: rustup target add wasm32-unknown-unknown
- name: Check native crates
run: cargo check --workspace --exclude feedsignal-web
- name: Check web crate (server)
run: cargo check -p feedsignal-web --no-default-features --features server
- name: Check web crate (wasm client)
run: cargo check -p feedsignal-web --no-default-features --features web --target wasm32-unknown-unknown
- name: Test
run: cargo test --workspace --exclude feedsignal-web