Skip to content

Merge branch 'main' of https://github.com/codethink-cn/Inkar-Suki #2200

Merge branch 'main' of https://github.com/codethink-cn/Inkar-Suki

Merge branch 'main' of https://github.com/codethink-cn/Inkar-Suki #2200

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