Skip to content

chore/security : fix des vulnérabilités du chatbot #87

chore/security : fix des vulnérabilités du chatbot

chore/security : fix des vulnérabilités du chatbot #87

Workflow file for this run

name: Chatbot CI
on:
push:
branches:
- main
paths:
- "tools/chatbot/**"
pull_request:
branches:
- "**"
paths:
- "tools/chatbot/**"
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: tools/chatbot
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: "3.13"
- name: Install dependencies
run: uv sync
- name: Check formatting
run: uv run ruff format --check .
- name: Check linting
run: uv run ruff check .
security-scan:
uses: ./.github/workflows/security-scan.yml
with:
working-directory: 'tools/chatbot'
project-type: 'python'
python-version: '3.13'
component-name: 'chatbot'
scan-dockerfile: true
dependency-scan: true