Skip to content

build(deps): bump python from fe45aec to c79315c #61

build(deps): bump python from fe45aec to c79315c

build(deps): bump python from fe45aec to c79315c #61

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches:
- main
permissions: {}
jobs:
test:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Python
id: setup-python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.14"
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
version: "0.11.7"
python-version: ${{ steps.setup-python.outputs.python-version }}
activate-environment: true
# hash from uv-x86_64-unknown-linux-gnu.tar.gz.sha256
# (from https://github.com/astral-sh/uv/releases)
checksum: "6681d691eb7f9c00ac6a3af54252f7ab29ae72f0c8f95bdc7f9d1401c23ea868"
- name: Install Dependencies
run: |
uv sync --locked --inexact --dev
- name: Run Pytest
run: pytest