Skip to content

chore(deps): update pre-commit hook gitleaks/gitleaks to v8.29.0 #1386

chore(deps): update pre-commit hook gitleaks/gitleaks to v8.29.0

chore(deps): update pre-commit hook gitleaks/gitleaks to v8.29.0 #1386

Workflow file for this run

name: Python package
on:
push:
branches-ignore:
- renovate/**
pull_request:
jobs:
build:
runs-on: ubuntu-24.04-arm
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
- '3.14'
- 3.14t
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
with:
version: 0.9.7
- name: Compile
env:
CFLAGS: -Wall -Wextra -Wno-unused-parameter -Werror
run: uv build
- name: Install deps
run: uv sync --only-group test
- name: Install
run: uv pip install dist/*.whl
- name: Test
run: uv run --only-group test pytest test_siphashc.py README.rst
- name: Benchmark
run: uv run benchmark.py
permissions:
contents: read