Skip to content

[fc] Add plone.namedfile to checkouts.cfg #5959

[fc] Add plone.namedfile to checkouts.cfg

[fc] Add plone.namedfile to checkouts.cfg #5959

Workflow file for this run

name: Running Buildout
on: push
jobs:
build:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: "Install Python dependencies (pip)"
uses: "py-actions/py-dependency-install@v4"
with:
path: "requirements.txt"
- name: Cache eggs
uses: actions/cache@v3
with:
path: |
eggs
key: eggs-${{ matrix.python-version }}-${{ runner.os }}-${{ hashFiles('versions*.cfg') }}
restore-keys: |
eggs-${{ matrix.python-version }}-${{ runner.os }}-
- name: Run buildout if Mac
if: matrix.os == 'macos-latest'
run: |
# MacOS on gh-actions cannot install MarkupSafe on Py 3.10, see https://github.com/plone/buildout.coredev/issues/799
export _PYTHON_HOST_PLATFORM="macosx-11-x86_64"
buildout buildout:git-clone-depth=1
- name: Run buildout
if: matrix.os != 'macos-latest'
run: |
buildout buildout:git-clone-depth=1