Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Expiry fixup is done in the Decoder, see #649 #212

Expiry fixup is done in the Decoder, see #649

Expiry fixup is done in the Decoder, see #649 #212

Workflow file for this run

name: ib_insync
on: [ push, pull_request ]
jobs:
build:
#runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11" ]
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 dependencies
run: |
pip install flake8 mypy types-dataclasses .
- name: Flake8 static code analysis
run:
flake8 ib_insync
- name: MyPy static code analysis
run: |
mypy -p ib_insync