Add Python 3.12 support (#286) #51
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
test: | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}" | |
env: | |
LIBMEMCACHED_VERSION: '1.0.18' | |
services: | |
memcached: | |
image: memcached:1.6.12 | |
ports: | |
- 11211:11211 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -r ./requirements_test.txt | |
sudo apt-get update -qq | |
sudo apt-get install libmemcached-dev | |
apt-cache show libmemcached-dev | |
- name: memcached stats | |
run: echo "stats settings" | netcat localhost 11211 -w 3 | |
- name: Install package | |
run: python setup.py install | |
- name: Set LIBMEMCACHED_VERSION | |
run: echo LIBMEMCACHED_VERSION="$(python -c 'import pylibmc; print(pylibmc.libmemcached_version)')" >> $GITHUB_ENV | |
- name: Log versions | |
run: | | |
python --version | |
pip --version | |
echo "LIBMEMCACHED_VERSION=${LIBMEMCACHED_VERSION}" | |
- name: Run test | |
run: python bin/runtests.py -v tests --with-doctest |