mirror of
https://github.com/qdrant/fastembed.git
synced 2026-09-25 07:27:49 -05:00
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 6.2.0 to 7.0.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/a309ff8b426b58ec0e2a45f0f869d46889d02405...5fda3b95a4ea91299a34e894583c3862153e4b97) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: Tests
|
||
|
||
on:
|
||
pull_request:
|
||
branches: [ master, main, gpu ]
|
||
workflow_dispatch:
|
||
|
||
|
||
env:
|
||
CARGO_TERM_COLOR: always
|
||
|
||
jobs:
|
||
test:
|
||
|
||
strategy:
|
||
matrix:
|
||
python-version:
|
||
- '3.10.x'
|
||
- '3.11.x'
|
||
- '3.12.x'
|
||
- '3.13.x'
|
||
os:
|
||
- ubuntu-latest
|
||
- macos-latest
|
||
- windows-latest
|
||
exclude:
|
||
# Exclude 3.10–3.12 for macOS and Windows
|
||
- os: macos-latest
|
||
python-version: '3.10.x'
|
||
- os: macos-latest
|
||
python-version: '3.11.x'
|
||
- os: macos-latest
|
||
python-version: '3.12.x'
|
||
- os: windows-latest
|
||
python-version: '3.10.x'
|
||
- os: windows-latest
|
||
python-version: '3.11.x'
|
||
- os: windows-latest
|
||
python-version: '3.12.x'
|
||
|
||
runs-on: ${{ matrix.os }}
|
||
|
||
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} test
|
||
|
||
steps:
|
||
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
||
- name: Set up Python
|
||
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
|
||
with:
|
||
python-version: ${{ matrix.python-version }}
|
||
- name: Install dependencies
|
||
run: |
|
||
python -m pip install poetry
|
||
poetry config virtualenvs.create false
|
||
poetry install --no-interaction --no-ansi --without dev,docs
|
||
|
||
- name: Run pytest
|
||
env:
|
||
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
||
run: |
|
||
poetry run pytest |