Skip to content

chore: bump to v1.12.2 #4

chore: bump to v1.12.2

chore: bump to v1.12.2 #4

Workflow file for this run

name: pytest
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pandas tqdm
pip install -e .
pip install -r requirements.txt
- name: Running Tests
run: |
pytest tests/dfcx_scrapi/ -vv