Skip to content

fix: missing order refund status #16

fix: missing order refund status

fix: missing order refund status #16

Workflow file for this run

name: Tests
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
working-directory: ./src
- name: Install connector
run: |
pip install .
working-directory: ./src
- name: Test with pytest
run: |
pip install pytest
pytest