Skip to content

Commit

Permalink
Use py3 images
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jul 5, 2024
1 parent 6daf10e commit 87cb521
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,20 @@ jobs:
needs: lint
strategy:
matrix:
ckan-version: ["2.9"]
include:
- ckan-version: "2.11"
ckan-image: "ckan/ckan-dev:2.11-py3.10"
- ckan-version: "2.10"
ckan-image: "ckan/ckan-dev:2.10-py3.10"
- ckan-version: "2.9"
ckan-image: "ckan/ckan-dev:2.9-py3.9"

fail-fast: false

name: CKAN ${{ matrix.ckan-version }}
runs-on: ubuntu-latest
container:
image: ckan/ckan-dev:${{ matrix.ckan-version }}
image: ${{ matrix.ckan-image }}
services:
solr:
image: ckan/ckan-solr:${{ matrix.ckan-version }}-solr9
Expand All @@ -45,11 +52,6 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Install requirements (2.9)
run: |
apk add 'py3-packaging>21.3'
pip show packaging
if: ${{ matrix.ckan-version == '2.9' }}
- name: Install requirements
run: |
pip install -r requirements.txt
Expand Down

0 comments on commit 87cb521

Please sign in to comment.