Skip to content

fix: Added args parser allowing args values separated with space, feat: checksum #46

fix: Added args parser allowing args values separated with space, feat: checksum

fix: Added args parser allowing args values separated with space, feat: checksum #46

Workflow file for this run

name: Test
on: [pull_request, workflow_dispatch]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
curl -sSL https://install.python-poetry.org | python3 - --version 1.8.2
poetry config virtualenvs.create false
poetry install
- name: Install
run: poetry install --with test
- name: Run Pytest
run: poetry run pytest