Skip to content

Bump pandas from 2.0.2 to 2.0.3 #83

Bump pandas from 2.0.2 to 2.0.3

Bump pandas from 2.0.2 to 2.0.3 #83

Workflow file for this run

name: Build
on:
- push
- pull_request
- workflow_call # allow us to use this workflow in other workflows
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install poetry
- uses: actions/setup-python@v4
with:
cache: 'poetry'
python-version: '3.10'
- run: poetry install -vvv
- run: poetry run python -m unittest discover -vb tests
- run: poetry build -vvv --no-interaction