Skip to content

Merge pull request #312 from bug-or-feature/streamer #152

Merge pull request #312 from bug-or-feature/streamer

Merge pull request #312 from bug-or-feature/streamer #152

Workflow file for this run

name: trading-ig unit tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9 ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: Install dependencies
run: |
python -m poetry install --extras "pandas munch tenacity"
- name: Prettify with black
uses: psf/black@stable
with:
version: "23.3.0"
- name: Lint with flake8
run: |
python -m poetry run flake8 trading_ig docs sample tests
- name: Unit tests with pytest
run: |
python -m poetry run python -m pytest --ignore=tests/test_integration.py