Skip to content

fix: 缓存 API 日期加 3 天宽限期,超期降级回 today #8

fix: 缓存 API 日期加 3 天宽限期,超期降级回 today

fix: 缓存 API 日期加 3 天宽限期,超期降级回 today #8

Workflow file for this run

name: Unittest
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unittest:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Dependencies
run: python3 -m pip install -r requirements.txt
- name: Run Unittest
run: python3 -m unittest discover -s tests -p 'test_*.py' -v