feat: Upgrade push proxy version and use default value from Chart.yaml #258
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: "Validate PR" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint Project | |
runs-on: ubuntu-22.04 | |
steps: | |
# Checkout everything since ct uses git diff to determine charts | |
- name: Checkout | |
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0 | |
with: | |
fetch-depth: 0 | |
- name: Execute Lint | |
run: make lint | |
test: | |
name: Test | |
runs-on: ubuntu-22.04 | |
needs: | |
- lint | |
steps: | |
# Checkout everything since ct uses git diff to determine charts | |
- name: Checkout | |
uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0 | |
with: | |
fetch-depth: 0 | |
- name: Execute Tests | |
run: make test |