Skip to content

Feat(#64): 분석 결과를 사용자 언어 증거 카드로 변환 (v1) (#69) #88

Feat(#64): 분석 결과를 사용자 언어 증거 카드로 변환 (v1) (#69)

Feat(#64): 분석 결과를 사용자 언어 증거 카드로 변환 (v1) (#69) #88

Workflow file for this run

name: AI CI
on:
pull_request:
push:
branches:
- develop
permissions:
contents: read
concurrency:
group: ai-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Python tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Check dependency compatibility
run: pip check
- name: Run tests
run: python -m pytest -q
docker-build:
name: Docker build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Build Docker image
run: docker build -t safefam-ai:test .