Skip to content

Merge branch 'main' into formsupport_314 #576

Merge branch 'main' into formsupport_314

Merge branch 'main' into formsupport_314 #576

Workflow file for this run

name: Run development buildout
on:
push:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Buildout
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set locale
run: |
sudo locale-gen en_US
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build
run: |
buildout -t 2
- name: c.r.plonesite
run: |
echo "from plone import api; print(api.portal.get().getId())" | bin/instance -OPlone debug
- name: Test
run: |
bin/test -u