Skip to content

Migrate to API v2 and add OHLC endpoint (#2) #18

Migrate to API v2 and add OHLC endpoint (#2)

Migrate to API v2 and add OHLC endpoint (#2) #18

Workflow file for this run

name: Running Code Coverage
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install requests coverage
- name: Run tests
run: python -m coverage run -m unittest discover
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2