Skip to content

test: test

test: test #107

Workflow file for this run

name: Jsonnet lint
on:
push:
paths:
- "jsonnet/**"
branches:
- develop
- test
pull_request:
paths:
- "jsonnet/**"
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Jsonnet formatter
run: |
cd jsonnet && make --always-make fmt
- name: Jsonnet linter
run: |
cd jsonnet && make --always-make lint