Update docker.io/bitnami/kubectl:1.28.15 Docker digest to a6db53e #839
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
COMPONENT_NAME: rook-ceph | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
command: | |
- lint_jsonnet | |
- lint_yaml | |
- lint_adoc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ${{ matrix.command }} | |
run: make ${{ matrix.command }} | |
editorconfig: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: snow-actions/eclint@v1.0.1 | |
with: | |
args: 'check' | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
instance: | |
- defaults | |
- openshift4 | |
- cephfs | |
- rbd-extra-storageclass | |
defaults: | |
run: | |
working-directory: ${{ env.COMPONENT_NAME }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.COMPONENT_NAME }} | |
- name: Compile component | |
run: make test -e instance=${{ matrix.instance }} | |
golden: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
instance: | |
- defaults | |
- openshift4 | |
- cephfs | |
- rbd-extra-storageclass | |
defaults: | |
run: | |
working-directory: ${{ env.COMPONENT_NAME }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{ env.COMPONENT_NAME }} | |
- name: Golden diff | |
run: make golden-diff -e instance=${{ matrix.instance }} |