Skip to content

Remove obsolete and dead link for collective packages still needed to migrate to Python 3 #3249

Remove obsolete and dead link for collective packages still needed to migrate to Python 3

Remove obsolete and dead link for collective packages still needed to migrate to Python 3 #3249

Workflow file for this run

name: Test Plone 6 documentation
on: [push, pull_request]
jobs:
test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install -q -r requirements-initial.txt
pip install -q -r requirements.txt
sudo snap install --edge vale
- name: Run tests with make test
run: make test
- name: Run vale
run: |
git clone https://github.com/errata-ai/Microsoft.git
cp -r ./Microsoft/Microsoft ./styles
VALEFILES=$(find -L ./docs/ -type d \( -path "./docs/plone.restapi/lib/*" -o -path "./docs/plone.restapi/performance/*" \) -prune -false -o -type f -name "*.md" -print)
vale --no-exit $VALEFILES