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

chore(deps): update dependency pandas to v2 #160

chore(deps): update dependency pandas to v2

chore(deps): update dependency pandas to v2 #160

Workflow file for this run

name: Python CI
on:
push:
branches:
- '**'
pull_request:
types: [ closed ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Setting up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Installing dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Running unit tests
run: |
pip install pytest
python -m pytest -v --cov=./TSIClient --cov-report xml --cov-report term