Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

<jx3>[feat]enable xianyu subscribe #2223

<jx3>[feat]enable xianyu subscribe

<jx3>[feat]enable xianyu subscribe #2223

Workflow file for this run

name: Build & Test
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9.13' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-asyncio
python -m pip install -r requirements.txt
- name: Run tests
run: |
pytest -v --full-trace --durations 10 test.py