Skip to content

build(deps): bump pandas from 1.5.2 to 2.2.0 #224

build(deps): bump pandas from 1.5.2 to 2.2.0

build(deps): bump pandas from 1.5.2 to 2.2.0 #224

Workflow file for this run

name: Test
on:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test-python:
timeout-minutes: 30
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Python Poetry
uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: 1.1.11
- name: Install project dependencies
run: |
poetry install
- name: Run unit tests
run: |
poetry run pytest -v --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: github.actor != 'dependabot[bot]'
with:
files: ./coverage.xml
env_vars: OS,PYTHON
fail_ci_if_error: false
verbose: true