Skip to content

Bump pytest from 9.0.2 to 9.0.3 #103

Bump pytest from 9.0.2 to 9.0.3

Bump pytest from 9.0.2 to 9.0.3 #103

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Setup python
uses: astral-sh/setup-uv@v7
with:
python-version: 3.11
enable-cache: "auto"
- name: Create venv and install dependencies
run: |
uv venv
uv pip install -e ".[dev,nixtlaverse]"
- name: Run tests
run: uv run pytest