Skip to content

removed duplicated project toml #16

removed duplicated project toml

removed duplicated project toml #16

Workflow file for this run

name: Run YamlDB Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
make pip
- name: Run Tests
run: |
pytest tests/test_config.py
pytest tests/test_delete.py
pytest tests/test_issues.py
- name: Run Tox Tests
run: |
tox