Skip to content

fix: add local repo as dep #2

fix: add local repo as dep

fix: add local repo as dep #2

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: Step 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
pip install -e .
- name: Running Tests
run: |
pytest tests/dfcx_scrapi/