Skip to content

Update tested hub version to 0.8.19 #200

Update tested hub version to 0.8.19

Update tested hub version to 0.8.19 #200

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
- "3.12"
- "3.11"
- "3.10"
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Poetry
uses: ./.github/actions/setup-poetry
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install --with dev
- name: Test
run: poetry run pytest -vra -m "not integration"