Skip to content

fix(recover_order_result): correctly cast qty to int for whole shares #60

fix(recover_order_result): correctly cast qty to int for whole shares

fix(recover_order_result): correctly cast qty to int for whole shares #60

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Get Poetry
uses: abatilo/[email protected]
with:
poetry-version: "1.4.2"
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest