Create python-app.yml

This commit is contained in:
DarkShy
2025-08-23 04:02:04 +03:00
committed by GitHub
parent 700f1fb52d
commit b3b4b44958

28
.github/workflows/python-app.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
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