Skip to content

feat: add deb packages metadata parser #8

feat: add deb packages metadata parser

feat: add deb packages metadata parser #8

Workflow file for this run

name: Pytest testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.x
- name: Install poetry
run: |
python -m pip install poetry==1.6.1
- name: Configure poetry
run: |
python -m poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/cache@v3
with:
path: ./.venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
python -m poetry install
- name: Run tests
run: |
python -m poetry run pytest -sxv