Skip to content

Update README example #14

Update README example

Update README example #14

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
jobs:
test-python-package:
strategy:
matrix:
python:
- "3.13"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./convert-attestations
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
cache-dependency-glob: convert-attestations/pyproject.toml
- name: Install Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}
- name: test
run: make test INSTALL_EXTRA=test