Skip to content

build(deps): bump transformers from 5.14.1 to 5.15.0 #1385

build(deps): bump transformers from 5.14.1 to 5.15.0

build(deps): bump transformers from 5.14.1 to 5.15.0 #1385

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v7
with:
enable-cache: true
- name: Install dependencies
run: uv sync --all-extras
- name: Run code formatting
run: make format
- name: Run linting
run: make lint
- name: Run tests
run: make test-unit
- name: Run security checks
run: make security
- name: Run build
run: make build