Skip to content

Correctly handle the lifetime signing EKU #69

Correctly handle the lifetime signing EKU

Correctly handle the lifetime signing EKU #69

Workflow file for this run

name: Tests
on:
pull_request:
paths-ignore:
- 'docs/**'
push:
paths-ignore:
- 'docs/**'
jobs:
unittest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install coverage
- name: Test with unittest
run: |
coverage run --source=signify --branch -m unittest
- uses: codecov/codecov-action@v3