Files
derpibooru-telegram-bot/.github/workflows/python-app.yml
2025-08-23 04:02:04 +03:00

29 lines
632 B
YAML

name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest aioresponses
- name: Run tests
run: |
pytest -v