Skip to content

Commit 2d561a8

Browse files
committed
Corrected gha env
1 parent 498f92f commit 2d561a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
include:
1515
- python: 3.13.1
16-
plone: 6.1
16+
plone: "6.1"
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
mkdir -p buildout-cache/{eggs,downloads}
2727
pip install --upgrade pip
28-
pip install -r requirements.txt
28+
pip install -r requirements-${{ matrix.plone }}.txt
2929
- name: Cache eggs
3030
uses: actions/cache@v4
3131
env:
@@ -35,6 +35,7 @@ jobs:
3535
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ matrix.python }}-${{ matrix.plone }}
3636
- name: buildout
3737
run: |
38+
sed -ie "s#test.cfg#test-${{matrix.plone}}.cfg#" gha.cfg
3839
buildout -c gha.cfg annotate
3940
buildout -c gha.cfg
4041
- name: test

0 commit comments

Comments
 (0)