@pypa is a bunch of rancid clowns #64
This file contains hidden or 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: Tests | |
| on: [push] | |
| jobs: | |
| tests: | |
| name: ${{ matrix.python-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [3.8, 3.9, "3.10", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: package deps | |
| run: | | |
| sudo apt-get install libssl-dev | |
| pip install setuptools | |
| python setup.py build_ext -i | |
| - name: runtests | |
| env: | |
| PYTHONPATH: '.:$PYTHONPATH' | |
| run: python tests/ |