Change git push reference in dependabot workflow #942
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Run development buildout | |
| permissions: | |
| contents: read | |
| 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 | |
| # XXX: update setuptools for https://github.com/pypa/setuptools/pull/4856/files | |
| pip install setuptools==75.8.2 | |
| - 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 |