Skip to content

Represent data using pandas data frames #11

Represent data using pandas data frames

Represent data using pandas data frames #11

Workflow file for this run

name: Run unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Check out main
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
python -m pip install . pytest
- name: Run pytest
run: |
pytest