Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fixing layer-0 key logic and fixing test cases #44

Fixing layer-0 key logic and fixing test cases

Fixing layer-0 key logic and fixing test cases #44

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install build
- name: Build package
run: |
python -m build
- name: Upload package to artifacts
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
test:
needs: build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Download package from artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
pip install pytest
# work around lack of release version fix for oscrypto issue #75
# https://github.com/wbond/oscrypto/pull/76
pip install --user --force-reinstall --break-system-packages git+https://github.com/wbond/oscrypto.git@master
- name: Install package
run: |
pip install dist/*.whl
- name: Test with pytest
run: |
mkdir tmp_for_test
cp -r tests/ tmp_for_test/
cd tmp_for_test
pytest
release:
needs: [lint, test]
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download package from artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install twine
- name: Upload package to PyPI
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload -u __token__ -p "$PYPI_TOKEN" --skip-existing dist/*