Move keyref creation to arkg.py #451
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: build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9'] | |
architecture: [x86, x64] | |
exclude: | |
- os: ubuntu-latest | |
architecture: x86 | |
- os: macos-latest | |
architecture: x86 | |
- os: windows-latest | |
python: pypy3 | |
- os: macos-latest | |
python: pypy3 | |
- os: macos-latest | |
python: 3.8 | |
- os: macos-latest | |
python: 3.9 | |
- os: macos-latest | |
python: 3.10 | |
name: ${{ matrix.os }} Py ${{ matrix.python }} ${{ matrix.architecture }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: ${{ matrix.architecture }} | |
- name: Install python dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools poetry | |
poetry update | |
- name: Run pre-commit | |
if: "!startsWith(matrix.python, 'pypy') && !startsWith(matrix.python, '3.7')" | |
run: | | |
python -m pip install pre-commit | |
pre-commit run --all-files | |
- name: Run unit tests | |
run: poetry run pytest | |
build: | |
#needs: test | |
runs-on: ubuntu-latest | |
name: Build Python source .tar.gz | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Build source package | |
run: | | |
python -m pip install --upgrade pip setuptools poetry | |
poetry build | |
- name: Upload source package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fido2-python-sdist | |
path: dist |