Skip to content

Merge pull request #155 from plone/config-with-default-template-1c2155e4 #229

Merge pull request #155 from plone/config-with-default-template-1c2155e4

Merge pull request #155 from plone/config-with-default-template-1c2155e4 #229

Workflow file for this run

name: Test the plone.app.standardtiles code
on:
push:
branches-ignore:
- "master"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.11"
plone:
- "6.0-dev"
- "6.1-dev"
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 VENV=off install
- name: Run Lint
run: |
make VENV=off lint
- name: Run tests
run: |
make VENV=off test-ignore-warnings