Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Python package

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]
release:
types: [ published ]
types: [published]

jobs:
format:
Expand All @@ -32,10 +32,11 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
ruff check src
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
python-version: ["3.10", "3.14"]
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions tests/test_exploratory.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ def test_run_tsne(self):
expected_result = pd.DataFrame(
{
"group": ["A", "A", "B", "B"],
"x": [-113.341728, 36.020717, 57.2992514, -134.729141],
"y": [131.169082, -59.616630, 110.601203, -39.086254],
"x": [-41.633194, -21.315784, -26.172028, -5.8222594],
"y": [28.062798, 43.488983, 7.7333646, 23.160675],
}
)
# ! Ubuntu x64 yields these results:
Expand Down
Loading