Skip to content

chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 #7

chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0

chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 #7

Workflow file for this run

name: Tests
on:
push:
branches: [main]
paths-ignore:
- "*.md"
- "docs/**"
pull_request:
branches: [main]
paths-ignore:
- "*.md"
- "docs/**"
permissions:
actions: read
contents: read
pull-requests: read
env:
AWS_DEFAULT_REGION: "us-east-1"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- id: setup-uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
enable-cache: true
cache-suffix: ${{ matrix.python-version }}
version: "latest"
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: uv sync --all-extras
- name: Run tests
run: uv run pytest