Skip to content

Add RSA key generation instructions; bump version #15

Add RSA key generation instructions; bump version

Add RSA key generation instructions; bump version #15

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- "**/*.md"
push:
branches:
- main
paths-ignore:
- "**/*.md"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install .
- name: Run tests
run: python -m unittest discover -s tests