Skip to content

- upd. .yml

- upd. .yml #2

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install pytest
pip install pytest-mock
pip install .
- name: Run pytest
run: pytest