Skip to content

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 #365

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2

chore(deps): bump actions/checkout from 6.0.1 to 6.0.2 #365

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
- 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