Skip to content

Fix Sphinx warnings #65

Fix Sphinx warnings

Fix Sphinx warnings #65

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]
beanstalkd-version: ["1.13", "1.12"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install beanstalkd ${{ matrix.beanstalkd-version }}
env:
BEANSTALKD_VERSION: ${{ matrix.beanstalkd-version }}
run: |
wget https://github.com/beanstalkd/beanstalkd/archive/v${BEANSTALKD_VERSION}.tar.gz
tar -xzvf v${BEANSTALKD_VERSION}.tar.gz
pushd beanstalkd-${BEANSTALKD_VERSION} && make && sudo make install && popd
- name: Install Python dependencies
run: |
pip install pytest
pip install .
- name: Run tests
run: make test