Adding get_pem_for_key
and normalize_pem
methods to normalize PEM formatting of keys
#141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
exclude: | |
- os: macos-latest | |
python-version: "pypy3.9" | |
- os: windows-latest | |
python-version: "pypy3.9" | |
runs-on: ${{ matrix.os }} | |
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -U "pip>=23.1.2" | |
pip install -U "tox-gh-actions==3.1.0" coverage | |
- name: Log python & pip versions | |
run: | | |
python --version | |
pip --version | |
- name: Run unit tests | |
run: tox | |
- name: Coverage report | |
run: coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
fail_ci_if_error: false | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
pip install -U setuptools | |
pip install -U "tox>=4.5.1,<5" | |
- run: tox -e lint | |
package: | |
name: Build & verify package | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install build, check-wheel-content, and twine | |
run: "python -m pip install build twine check-wheel-contents" | |
- name: Build package | |
run: "python -m build --sdist --wheel ." | |
- name: List result | |
run: "ls -l dist" | |
- name: Check wheel contents | |
run: "check-wheel-contents dist/*.whl" | |
- name: Check long_description | |
run: "python -m twine check dist/*" |