Skip to content

[pre-commit.ci] pre-commit autoupdate #273

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #273

Workflow file for this run

name: sdist
on: [push, pull_request]
jobs:
sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install build dependencies
run: |
pip install --upgrade pip setuptools wheel
- name: Package source dist
run: |
python setup.py sdist
- name: Install test dependencies
env:
PYXMLSEC_STATIC_DEPS: true
run: |
pip install --upgrade -r requirements-test.txt
pip install black # for stub generation tests
pip install dist/xmlsec-$(python setup.py --version).tar.gz
- name: Run tests
run: |
pytest -v --color=yes