Skip to content

Update to latest tidalapi #31

Update to latest tidalapi

Update to latest tidalapi #31

Workflow file for this run

name: Test
on:
push:
pull_request:
types: [opened, synchronize]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
# Run all the matrix jobs, even if one fails.
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Lint
run: |
pip install isort black
make lint
- name: Test
run: |
python -m venv .venv
source .venv/bin/activate
pip install .
pip install -r test_requirements.txt
make test
- name: Upload coverage
if: ${{ matrix.python-version == '3.10' }}
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
- run: echo ${{ matrix.python-version }}