Skip to content

Bump plus3it/tardigrade-ci from 0.29.3 to 0.29.4 in the docker group #57

Bump plus3it/tardigrade-ci from 0.29.3 to 0.29.4 in the docker group

Bump plus3it/tardigrade-ci from 0.29.3 to 0.29.4 in the docker group #57

Workflow file for this run

name: Run pytest
on:
pull_request:
concurrency:
group: pytest-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57
with:
enable-cache: true
cache-dependency-glob: "src/python/requirements-dev.txt"
- name: Install dependencies
run: |
uv venv
uv pip install -r src/python/requirements-dev.txt
- name: Run tests
run: uv run pytest tests/python/ -v