Skip to content

Bump cython from 0.29.32 to 0.29.35 #178

Bump cython from 0.29.32 to 0.29.35

Bump cython from 0.29.32 to 0.29.35 #178

Workflow file for this run

# 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: Unit Testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Unittest Anonlink ${{ matrix.python }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-20.04]
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Get full Python version
id: full-python-version
shell: bash
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install -U -r requirements.txt
- name: Build and install anonlink
shell: bash
run: |
python -m pip install -e .
- name: Test with pytest
run: |
pytest -q
- name: Test with extended size 100k
if: ${{ matrix.python == 3.10}}
env:
INCLUDE_100K: 1
run: |
pytest -q