Skip to content

build: update v0.3.0 #101

build: update v0.3.0

build: update v0.3.0 #101

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
# You can test your matrix by printing the current Python version
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pyspark attrs pytest loguru
pip install --editable .
- name: Run testing suite
run: python -m pytest tests