Skip to content

feat: Step 16 — RAG_CONTENT_FILTER defense strategy #22

feat: Step 16 — RAG_CONTENT_FILTER defense strategy

feat: Step 16 — RAG_CONTENT_FILTER defense strategy #22

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: Build & test (JDK 21)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Build and run all tests
run: mvn -B -ntp verify