Skip to content

also provide a GRPCRoute in sophora-server #1286

also provide a GRPCRoute in sophora-server

also provide a GRPCRoute in sophora-server #1286

Workflow file for this run

name: Test Charts
on:
push:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Test Chart
uses: d3adb5/helm-unittest-action@v2.5.0
with:
helm-version: v3.20.0
# validate YAML files with JSON schema
- name: Install the JSON Schema CLI
uses: sourcemeta/jsonschema@v14.7.0
- name: validate every Chart.yaml
run: |-
allCharts=$(find charts/ -name Chart.yaml -printf '%p ')
echo "validating with schema chart-schema.json files: ${allCharts}"
jsonschema validate chart-schema.json ${allCharts} --http