Skip to content

add kiegroup/kogito-serverless-operator #70

add kiegroup/kogito-serverless-operator

add kiegroup/kogito-serverless-operator #70

Workflow file for this run

# SPDX-FileCopyrightText: The kube-custom-resources-rs Authors
# SPDX-License-Identifier: 0BSD
name: Verify Commits
on:
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
- name: Check Code Generator
run: cargo check --package code-generator --locked
- name: Check changed CRDs
run: |
for module in $(git diff --name-only origin/main -- ./kube-custom-resources-rs/src | grep --invert-match lib.rs | xargs --no-run-if-empty -I{} dirname {} | sort --unique | xargs --no-run-if-empty -I{} basename {}); do
if [ -f "./kube-custom-resources-rs/src/${module}/mod.rs" ]; then
echo "testing ${module}"
cargo check --lib --package kube-custom-resources-rs --features "${module}" --locked
fi
done
env:
RUSTFLAGS: "--deny warnings"