Skip to content

refactor(config): 简化配置加载,移除命令行参数和环境变量覆盖 #8

refactor(config): 简化配置加载,移除命令行参数和环境变量覆盖

refactor(config): 简化配置加载,移除命令行参数和环境变量覆盖 #8

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python-version:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest