Skip to content

build(deps): bump transformers from 5.15.0 to 5.16.1 #1403

build(deps): bump transformers from 5.15.0 to 5.16.1

build(deps): bump transformers from 5.15.0 to 5.16.1 #1403

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # 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