File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Lint and Test Charts
2+
3+ on : pull_request
4+
5+ jobs :
6+ lint-test :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - name : Checkout
10+ uses : actions/checkout@v2
11+ with :
12+ fetch-depth : 0
13+
14+ - name : Set up Helm
15+ uses : azure/setup-helm@v1
16+ with :
17+ version : v3.4.0
18+
19+ - uses : actions/setup-python@v2
20+ with :
21+ python-version : 3.8
22+
23+ - name : Set up chart-testing
24+ 25+
26+ - name : Run chart-testing (list-changed)
27+ id : list-changed
28+ run : |
29+ changed=$(ct list-changed)
30+ if [[ -n "$changed" ]]; then
31+ echo "::set-output name=changed::true"
32+ fi
33+
34+ - name : Run chart-testing (lint)
35+ run : ct lint
36+
37+ - name : Create kind cluster
38+ 39+ if : steps.list-changed.outputs.changed == 'true'
40+
41+ - name : Run chart-testing (install)
42+ run : ct install
Original file line number Diff line number Diff line change 28282929 env :
3030 CR_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
31+ with :
32+ charts_repo_url : https://tailzip.github.io/dnscrypt-proxy-helm-chart/
You can’t perform that action at this time.
0 commit comments