Updated config. Second test

This commit is contained in:
Alex Dvornik
2026-02-20 11:25:51 +01:00
parent 191c92e176
commit d32fd411bb

View File

@ -15,23 +15,18 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install Dependencies
working-directory: .
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run linting
run: |
flake8 ./src/
- name: Run tests
run: |
pytest