Skip to content

Commit

Permalink
Implement lint CI and cleanup files (#28)
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
Co-authored-by: Akash Vibhute <[email protected]>
  • Loading branch information
j-rivero and akash-roboticist authored Aug 20, 2024
1 parent b825a62 commit d200198
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Lint all charts

on: [ pull_request, push ]

jobs:
lint-test:
runs-on: ubuntu-latest
env:
chart_configuration: --charts rmf-deployment/
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.11.2

- uses: actions/setup-python@v4
with:
python-version: '3.9'
check-latest: true

- name: Set up chart-testing
uses: helm/[email protected]

- name: Run chart-testing (lint)
run: ct lint ${chart_configuration}
2 changes: 1 addition & 1 deletion rmf-deployment/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: rmf-deployment
description: Helm Chart for a basic RMF deployment
description: Helm Chart for a basic RMF deployment
version: 0.1.0
appVersion: 0.1.0
maintainers:
Expand Down
1 change: 0 additions & 1 deletion rmf-deployment/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

replicas: 1
registryUrl: 'ghcr.io/open-rmf'
builder_ns: 'ghcr.io/open-rmf/rmf_deployment_template'
Expand Down

0 comments on commit d200198

Please sign in to comment.