Compare commits

...

4 Commits

Author SHA1 Message Date
Jonas Forsberg
e7e344e9dc . 2024-10-15 13:57:59 +02:00
Jonas Forsberg
56a38f556a moved
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 17s
2024-10-15 13:50:57 +02:00
Jonas Forsberg
062fb1c416 .
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 19s
2024-10-15 13:49:45 +02:00
Jonas Forsberg
f2b8cf31ca moved charts
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 20s
Testing pipes / Explore-Gitea-Actions (push) Successful in 33s
2024-10-15 12:32:56 +02:00
3 changed files with 10 additions and 31 deletions

View File

@@ -1,7 +1,6 @@
name: Lint and Test Charts name: Lint and Test Charts
on: on: []
push:
jobs: jobs:
lint-test: lint-test:

View File

@@ -19,30 +19,13 @@ jobs:
with: with:
version: v3.14.4 version: v3.14.4
- uses: actions/setup-python@v5 - name: Check for changed charts
with: id: changed-files
python-version: '3.x' uses: tj-actions/changed-files@v45.0.3
check-latest: true
- name: Set up chart-testing - name: List all changed files
uses: helm/chart-testing-action@v2.6.1 run: |
for file in ${{ steps.changed-files.output_all_changed_files }}; do
echo "$file was changed"
done
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ gitea.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ gitea.event.repository.default_branch }}
- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/kind-action@v1.10.0
- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ gitea.event.repository.default_branch }}

View File

@@ -1,8 +1,5 @@
name: Testing pipes name: Testing pipes
on: on: []
push:
branches:
- main
jobs: jobs:
Explore-Gitea-Actions: Explore-Gitea-Actions: