From 9d803ac1c57f541647bb51e8d56d9f4d972cd25f Mon Sep 17 00:00:00 2001 From: mjanez <96422458+mjanez@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:09:30 +0100 Subject: [PATCH] Update CI workflow to use CKAN 2.10 and related container images --- .github/workflows/test.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 119261a..081a429 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,18 +1,21 @@ name: Tests on: [pull_request] + jobs: test: + name: CKAN 2.10 runs-on: ubuntu-latest container: # The CKAN version tag of the Solr and Postgres containers should match # the one of the container the tests run on. # You can switch this base image with a custom image tailored to your project - image: openknowledge/ckan-dev:2.9 + image: ckan/ckan-dev:2.10-py3.10 services: solr: - image: ckan/ckan-solr:2.9-solr9-spatial + # Custom image with spatial support and advanced schema + image: ghcr.io/mjanez/ckan-solr:2.10-solr9-spatial postgres: - image: ckan/ckan-postgres-dev:2.9 + image: ckan/ckan-postgres-dev:2.10 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres @@ -29,7 +32,7 @@ jobs: CKAN_REDIS_URL: redis://redis:6379/1 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install requirements # Install any extra requirements your extension has here (dev requirements, other extensions etc) run: |