workflow-test/.gitea/workflows/lint-test.yaml
Jonas Forsberg 907bb83ef4
All checks were successful
Lint and Test Charts / lint-test (push) Successful in 57s
.
2024-10-15 14:30:35 +02:00

36 lines
724 B
YAML

name: Lint and Test Charts
on:
push:
branches:
- main
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4.2.0
with:
version: v3.14.4
- name: Check for changed charts
id: changed-files
uses: tj-actions/changed-files@v44
with:
dir_names: true
dir_names_max_depth: '2'
files: 'charts/**'
- name: List all changed files
run: |
for file in ${{ steps.changed-files.output_all_changed_files }}; do
echo "$file was changed"
done