Skip to content

Commit

Permalink
Merge pull request #2 from synthesized-io/ci
Browse files Browse the repository at this point in the history
add ci check
  • Loading branch information
inponomarev authored Oct 4, 2023
2 parents a9a80c9 + f3500cf commit 21ee61b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Static verification

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

static-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Helm
uses: azure/setup-helm@v3

- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7

- name: Install yamllint
run: |
python -m pip install --upgrade pip
pip install yamllint
- name: Verify yamls
run: |
yamllint -s .
- name: Verify Helm charts
run: |
helm lint charts/tdk
helm lint charts/sdk
helm lint charts/governor

0 comments on commit 21ee61b

Please sign in to comment.