Skip to content

Refactor Importer

Refactor Importer #29

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main # Or your main branch name (e.g., master)
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'poetry'
- name: Install Dependencies
run: |
make install-deps
- name: Run make test
run: |
make test