Skip to content

Merge pull request #14 from aoki-h-jp/release/1.1.2 #63

Merge pull request #14 from aoki-h-jp/release/1.1.2

Merge pull request #14 from aoki-h-jp/release/1.1.2 #63

Workflow file for this run

name: Run pytest on all branches
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pip install git+https://github.com/aoki-h-jp/bybit-bulk-downloader
pip install pandas
pip install pybit
pipenv install --dev
- name: Run pytest
run: |
python -m pytest -v -s