Skip to content

Init mobile banner

Init mobile banner #13

Workflow file for this run

name: Test Banner Behavior
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
# - "3.11"
plone:
- "6.0.0b3"
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