Skip to content

Allow manual CI trigger #206

Allow manual CI trigger

Allow manual CI trigger #206

Workflow file for this run

name: Test Collective Taxonomy
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
plone:
- "6.0-dev"
steps:
- uses: actions/checkout@v2
- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }}
id: setup
uses: plone/setup-plone@v1.0.0
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