Skip to content

Parse CSV columns into a MultiIndex #1

Parse CSV columns into a MultiIndex

Parse CSV columns into a MultiIndex #1

Workflow file for this run

name: Test
on:
push:
branches:
- "master"
pull_request:
branches:
- "master"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Test with pytest
run: |
python -m pytest -v