Skip to content

Back cache.rs with real Redis, add degraded-mode fallback and health check #497

Back cache.rs with real Redis, add degraded-mode fallback and health check

Back cache.rs with real Redis, add degraded-mode fallback and health check #497

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build
run: cargo build --workspace --verbose
- name: Test
run: cargo test --workspace --verbose