Skip to content

feat: Add pubkey and signature fields to ISCC crypto schema #120

feat: Add pubkey and signature fields to ISCC crypto schema

feat: Add pubkey and signature fields to ISCC crypto schema #120

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: "2.0.1"
- name: Install Dependencies
run: poetry install
- name: Run Tests (Pure Python with coverage)
run: poetry run pytest -q tests