Skip to content

Commit

Permalink
cicd: update test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-nelson-uiuc committed Dec 27, 2024
1 parent 7d5454e commit 41df36f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Publish"
name: Publish

on:
release:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Python package
name: Test

on: [push]

Expand All @@ -9,7 +9,8 @@ jobs:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
pyspark-version: ["3.5.1", "3.5.2", "3.5.3", "3.5.4"]
pyspark-version: ["3.5.0", "3.5.4"]
attrs-version: ["22.1.0", "23.1.0", "24.3.0"]

steps:
- uses: actions/checkout@v4
Expand All @@ -20,7 +21,7 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pyspark attrs pytest loguru
pip install --upgrade pyspark==${{ matrix.pyspark-version }} attrs==${{ matrix.attrs-version }} pytest loguru
pip install --editable .
- name: Run testing suite
run: python -m pytest tests

0 comments on commit 41df36f

Please sign in to comment.