Skip to content

Commit

Permalink
Use Python images in tests
Browse files Browse the repository at this point in the history
Rather than the deprecated Alpine ones, as they cause failures like

https://github.com/ckan/ckanext-scheming/actions/runs/11551377696/job/32148273098?pr=425
  • Loading branch information
amercader committed Oct 28, 2024
1 parent 27035f4 commit 0c12388
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ jobs:
needs: lint
strategy:
matrix:
ckan-version: ["2.11", "2.10", "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 Down

0 comments on commit 0c12388

Please sign in to comment.