feat: bump observe-agent version to 1.3.0 #891
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Charts | |
on: pull_request | |
jobs: | |
lint-charts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.1 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
check-latest: true | |
- name: Install chart-testing | |
uses: helm/[email protected] | |
with: | |
version: v3.8.0 | |
- name: Lint charts | |
run: make lint | |
test-charts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.1 | |
- name: Install kind | |
uses: helm/[email protected] | |
with: | |
install_only: true | |
- name: Test charts | |
run: make test GOBUILD=false |