Add aiogram integration #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- 3.10.13 | |
- 3.11.7 | |
- 3.12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Cache PIP | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/pip | |
.venv | |
key: pip-${{ matrix.python-version }}-${{ hashFiles('pdm.lock') }} | |
- name: Install PDM | |
run: | | |
pip install pdm | |
pdm sync --clean | |
- run: | | |
pdm run coverage run | |
pdm run coverage report -m | |
pdm run coverage xml |