Bump pymdown-extensions from 10.12 to 10.16.1 #933
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: unit-tests | |
| on: | |
| pull_request: | |
| branches: | |
| - "*" | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| run: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ["3.13", "3.12", "3.11", "3.10"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build River | |
| uses: ./.github/actions/install-env | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Cache River datasets | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/river_data | |
| key: ${{ runner.os }} | |
| - name: Cache scikit-learn datasets | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/scikit_learn_data | |
| key: ${{ runner.os }} | |
| - name: Download datasets | |
| run: | | |
| poetry run python -c "from river import datasets; datasets.CreditCard().download(); datasets.Elec2().download(); datasets.SMSSpam().download()" | |
| poetry run python -c "from river import bandit; bandit.datasets.NewsArticles().download()" | |
| - name: pytest | |
| run: | | |
| poetry run pytest -m "not datasets" --durations=10 -n logical # Run pytest on all logical CPU cores |