summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: 88ed440be7d29ed312cf546a815d6256b836bb47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version: [2.7, 3.6, 3.7, 3.8, 3.9, pypy2, pypy3]

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v2
      with:
        python-version: ${{ matrix.python-version }}
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        sudo apt-get install libmemcached-dev
    - name: Lint
      if: matrix.python-version == '2.7' || matrix.python-version == '3.9'
      run: |
        pip install codespell flake8
        codespell . --skip=./.*,./pymemcache/test/certs --quiet-level=2
        flake8 --max-complexity=18 .
        python setup.py check --restructuredtext
    - name: Disable IPv6 localhost
      run: |
        sudo sed -i '/::1/d' /etc/hosts
    - name: Tests
      run: |
        pip install -r test-requirements.txt
        py.test pymemcache/test/ \
            -m 'unit or integration' \
            --port ${{ job.services.memcached.ports[11211] }} \
            --tls-port ${{ job.services.tls_memcached.ports[11211] }}

    services:
      memcached:
        image: memcached:latest
        ports:
        - 11211/tcp
      tls_memcached:
        image: scoriacorp/tls_memcached:latest
        ports:
        - 11211/tcp