Skip to content

移除 logging

移除 logging #103

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["3.11", "3.12"]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pip --upgrade
python -m pip install -r requirements.txt
- name: Test
run: python -m pytest