Skip to content

Commit

Permalink
change docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
Jovanka committed Dec 10, 2024
1 parent 2ecf6be commit 9c1e804
Showing 1 changed file with 6 additions and 21 deletions.
27 changes: 6 additions & 21 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,18 @@ on:
branches:
- '**'
jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-python@v2
# with:
# python-version: '3.6'
# - name: Install requirements
# run: pip install flake8 pycodestyle
# - name: Check syntax
# run: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics --exclude ckan

test:
# needs: lint
strategy:
matrix:
ckan-base-version: [2.9]
ckan-version: [py3.9]
solr-version: [solr8]
fail-fast: false
matrix:
ckan-base-version: [2.9]
ckan-version: [py3.9]
solr-version: [solr8]
fail-fast: false

name: CKAN ${{ matrix.ckan-base-version }}
runs-on: ubuntu-latest
container:
image: ckan/ckan-dev:${{ matrix.ckan-base-version }}
image: ckan/ckan-dev:${{ matrix.ckan-base-version }}-${{ matrix.ckan-version }}
services:
solr:
image: ckan/ckan-solr:${{ matrix.ckan-base-version }}-${{ matrix.solr-version }}
Expand All @@ -50,8 +37,6 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Install CURL
run: apk install curl -y
- name: Install requirements
run: |
pip install -r dev-requirements.txt
Expand Down

0 comments on commit 9c1e804

Please sign in to comment.