Skip to content

Commit

Permalink
Merge pull request #2586 from camptocamp/fix-rebuild
Browse files Browse the repository at this point in the history
Fix Python version used in rebuild
  • Loading branch information
sbrunner authored Nov 11, 2024
2 parents f229122 + 34d73fa commit 36369bc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ jobs:
strategy:
fail-fast: false
matrix:
branch:
- '1.17'
- '1.18'
include:
- branch: '1.17'
python-version: '3.11'
- branch: '1.18'
python-version: '3.11'

env:
REDIS_URL: redis://localhost:6379
Expand All @@ -32,7 +34,9 @@ jobs:
github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}}
patterns: pypi docker

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python3 -m pip install --user --requirement=ci/requirements.txt

- name: Checks
Expand Down

0 comments on commit 36369bc

Please sign in to comment.