Skip to content

chore(deps): Bump actions/checkout from 4 to 7 #10

chore(deps): Bump actions/checkout from 4 to 7

chore(deps): Bump actions/checkout from 4 to 7 #10

Workflow file for this run

name: Smoke
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
smoke:
name: smoke-py${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
cache-dependency-path: |
requirements.txt
requirements.lock
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# smoke 测试不调 LLM,但仍需框架 import 通过
pip install -r requirements.txt
- name: Run smoke tests
run: python -m pytest tests/test_smoke.py -v