We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 498f92f commit 2d561a8Copy full SHA for 2d561a8
.github/workflows/main.yml
@@ -13,7 +13,7 @@ jobs:
13
matrix:
14
include:
15
- python: 3.13.1
16
- plone: 6.1
+ plone: "6.1"
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
25
run: |
26
mkdir -p buildout-cache/{eggs,downloads}
27
pip install --upgrade pip
28
- pip install -r requirements.txt
+ pip install -r requirements-${{ matrix.plone }}.txt
29
- name: Cache eggs
30
uses: actions/cache@v4
31
env:
@@ -35,6 +35,7 @@ jobs:
35
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ matrix.python }}-${{ matrix.plone }}
36
- name: buildout
37
38
+ sed -ie "s#test.cfg#test-${{matrix.plone}}.cfg#" gha.cfg
39
buildout -c gha.cfg annotate
40
buildout -c gha.cfg
41
- name: test
0 commit comments