Bump requests to >=2.33.0 (security) and release 1.0.12.1 #24
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, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install -e ".[test]" | |
| - name: Run tests | |
| run: pytest tests/ --cov=syncsketch --cov-report=term-missing | |
| test-legacy: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.7"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: pip install -e ".[test]" | |
| - name: Run tests | |
| run: pytest tests/ --cov=syncsketch --cov-report=term-missing | |
| test-py27: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "2.7" | |
| continue-on-error: true | |
| - name: Install Python 2.7 via apt | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y python2 | |
| curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py | |
| python2 get-pip.py | |
| - name: Install requests | |
| run: python2 -m pip install "requests>=2.20.0,<2.28.0" | |
| - name: Run smoke tests | |
| run: python2 tests/test_py27_smoke.py |