Skip to content

Commit

Permalink
Fix unit-tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gbolmier committed Jun 18, 2024
1 parent efe33c0 commit eb36cb3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
run:
strategy:
matrix:
os: [ubuntu-24.04]
os: [ubuntu-latest]
python-version: ["3.12", "3.11", "3.10"]

runs-on: ${{ matrix.os }}
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Build River
uses: ./.github/actions/install-env
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}

- name: Cache River datasets
uses: actions/cache@v3
Expand All @@ -37,6 +37,9 @@ jobs:
path: ~/scikit_learn_data
key: ${{ runner.os }}

- name: Update Rust
run: rustup update

- name: Download datasets
run: |
poetry run python -c "from river import datasets; datasets.CreditCard().download(); datasets.Elec2().download(); datasets.SMSSpam().download()"
Expand Down

0 comments on commit eb36cb3

Please sign in to comment.