Skip to content

Update ghcr.io/vshn/appcat-apiserver Docker tag to v3 - autoclosed #321

Update ghcr.io/vshn/appcat-apiserver Docker tag to v3 - autoclosed

Update ghcr.io/vshn/appcat-apiserver Docker tag to v3 - autoclosed #321

Workflow file for this run

name: Pull Request (component)
on:
pull_request:
branches:
- master
env:
COMPONENT_NAME: appcat
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- lint_jsonnet
- lint_yaml
steps:
- uses: actions/checkout@v4
- name: Run ${{ matrix.command }}
run: make -C component ${{ matrix.command }}
test:
runs-on: ubuntu-latest
strategy:
matrix:
instance:
- defaults
- exoscale
- cloudscale
- openshift
- vshn
- apiserver
- controllers
- minio
defaults:
run:
working-directory: ${{ env.COMPONENT_NAME }}
steps:
- uses: actions/checkout@v4
with:
path: ${{ env.COMPONENT_NAME }}
- name: Compile component
run: make -C component test -e instance=${{ matrix.instance }}
golden:
runs-on: ubuntu-latest
strategy:
matrix:
instance:
- defaults
- exoscale
- cloudscale
- openshift
- vshn
- apiserver
- controllers
- minio
defaults:
run:
working-directory: ${{ env.COMPONENT_NAME }}
steps:
- uses: actions/checkout@v4
with:
path: ${{ env.COMPONENT_NAME }}
- name: Golden diff
run: make -C component golden-diff -e instance=${{ matrix.instance }}