Skip to content

⬆️ Bump huggingface-hub from 0.31.1 to 0.32.4 #814

⬆️ Bump huggingface-hub from 0.31.1 to 0.32.4

⬆️ Bump huggingface-hub from 0.31.1 to 0.32.4 #814

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1
- name: Install dependencies
run: |
poetry install
pip install pytest
pip install openai
- name: Run style checks
run: |
make check-codestyle
- name: Creadentials search in source code - TruffleHog OSS
uses: trufflesecurity/trufflehog@v3.69.0
- name: Run tests
run: |
make test