Skip to content

1.x: consider extradata and showFields settings #200

1.x: consider extradata and showFields settings

1.x: consider extradata and showFields settings #200

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
config:
# [Python version, tox env]
- ["2.7", "plone43-py27"]
runs-on: ubuntu-latest
container:
image: python:2.7.18
name: ${{ matrix.config[1] }}
steps:
- uses: actions/checkout@v2
- name: Pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.config[0] }}-${{ hashFiles('setup.*', 'tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.config[0] }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
run: tox -e ${{ matrix.config[1] }}