[pre-commit.ci] pre-commit autoupdate #271
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: 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 |