Skip to content

chore(deps): update mccutchen/go-httpbin docker tag from 2.18.3 to v2.19.0 (docker-compose.override.dev.yml) #24675

chore(deps): update mccutchen/go-httpbin docker tag from 2.18.3 to v2.19.0 (docker-compose.override.dev.yml)

chore(deps): update mccutchen/go-httpbin docker tag from 2.18.3 to v2.19.0 (docker-compose.override.dev.yml) #24675

Workflow file for this run

name: Unit tests
on:
workflow_dispatch:
pull_request:
branches:
- master
- dev
- bugfix
- release/**
- hotfix/**
jobs:
build-docker-containers:
strategy:
matrix:
platform: ['linux/amd64', 'linux/arm64']
fail-fast: false
uses: ./.github/workflows/build-docker-images-for-testing.yml
secrets: inherit
with:
platform: ${{ matrix.platform }}
test-rest-framework:
strategy:
matrix:
platform: ['linux/amd64', 'linux/arm64']
auditlog_type: ['django-auditlog', 'django-pghistory']
fail-fast: false
needs: build-docker-containers
uses: ./.github/workflows/rest-framework-tests.yml
secrets: inherit
with:
platform: ${{ matrix.platform}}
auditlog_type: ${{ matrix.auditlog_type }}
# only run integration tests for linux/amd64 (default)
test-user-interface:
needs: build-docker-containers
uses: ./.github/workflows/integration-tests.yml
secrets: inherit
strategy:
matrix:
auditlog_type: ['django-auditlog', 'django-pghistory']
fail-fast: false
with:
auditlog_type: ${{ matrix.auditlog_type }}
# only run k8s tests for linux/amd64 (default)
test-k8s:
needs: build-docker-containers
uses: ./.github/workflows/k8s-tests.yml
secrets: inherit