Skip to content

Use plone.app.z3cform.widgets.OrderedSelect in Plone 6.1 #273

Use plone.app.z3cform.widgets.OrderedSelect in Plone 6.1

Use plone.app.z3cform.widgets.OrderedSelect in Plone 6.1 #273

Workflow file for this run

name: Test Collective Taxonomy
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.10"
- "3.11"
- "3.12"
plone:
- "6.0-latest"
- "6.1-latest"
exclude:
- python: "3.10"
plone: "6.0-latest"
- python: "3.12"
plone: "6.0-latest"
- python: "3.8"
plone: "6.1-latest"
- python: "3.11"
plone: "6.1-latest"
steps:
- uses: actions/checkout@v4
- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }}
id: setup
uses: plone/[email protected]
with:
python-version: ${{ matrix.python }}
plone-version: ${{ matrix.plone }}
- name: Install package
run: |
make install
- name: Run Lint
run: |
make lint
- name: Run tests
run: |
make test-ignore-warnings
- name: Run Javascript Tests
run: |
cd resources; make test