Skip to content

chore(exchanges): working with okx data #45

chore(exchanges): working with okx data

chore(exchanges): working with okx data #45

Workflow file for this run

name: Python Linting
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
- name: Check with Flake8
run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Format code with Black
run: black --check .