Skip to content

Commit

Permalink
Merge pull request #122 from twuni/ci/setup-basic-ci
Browse files Browse the repository at this point in the history
ci: setup GitHub Actions CI
  • Loading branch information
canterberry authored Mar 19, 2024
2 parents 524a0a9 + ced33bf commit 1d81ad8
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .circleci/config.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
# 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/[email protected]
- run: |
helm lint --strict
integration-stest:
name: Integration Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: AbsaOSS/[email protected]
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

0 comments on commit 1d81ad8

Please sign in to comment.