Files
docker-registry.helm/.github/workflows/ci.yaml
dependabot[bot]andGitHub 5c901df31e Bump actions/checkout from 3 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-21 02:09:10 +00:00

42 lines
1.0 KiB
YAML

---
# GitHub Actions Workflows Ref: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: CI
"on":
push:
branches:
- main
pull_request:
branches:
- "**"
workflow_dispatch:
concurrency:
group: ${{ github.event_name }}-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions: read-all
jobs:
helm-lint:
name: Helm Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- run: |
helm lint --strict
integration-test:
name: Integration Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: AbsaOSS/k3d-action@v2.4.0
name: Create K3D Cluster with Container Registry
with:
cluster-name: local-ci-k3d-cluster
args: >-
--agents 1
--registry-create local-ci-k3d-registry
- name: Test
run: |
helm install docker-registry . --wait --wait-for-jobs
kubectl get all,pvc