⬆️ Bump huggingface-hub from 0.31.1 to 0.32.4 #813
Workflow file for this run
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: 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 |