Use request instead of limits for cpu resource #483
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: Lint charts | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.4.1 | |
# Set up Python for ct lint, which needs Python for Yamale and yamllint | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Set up ct CLI | |
uses: helm/[email protected] | |
with: | |
version: v3.3.0 | |
- name: Lint chart | |
run: ct lint --config ct.yaml |