Skip to content

chore(deps): bump astral-sh/setup-uv from 7.1.4 to 7.1.5 #286

chore(deps): bump astral-sh/setup-uv from 7.1.4 to 7.1.5

chore(deps): bump astral-sh/setup-uv from 7.1.4 to 7.1.5 #286

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions: read-all
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@ed21f2f24f8dd64503750218de024bcf64c7250a # v7.1.5
- name: Create virtual environment
run: uv venv
- name: Install test dependencies
run: uv pip install '.[test]'
- name: Run tests
run: uv run pytest
- name: Run pre-commit checks
run: |
uv pip install pre-commit
uv run pre-commit run --all-files --show-diff-on-failure
- name: Run Bandit
run: |
uv pip install bandit
uv run bandit -r . -x "./.venv/*","./tests" --severity-level medium