cherry pick #121 removing unused jsonnet modules #114
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: Jsonnet lint | |
on: | |
push: | |
paths: | |
- "jsonnet/**" | |
branches: | |
- develop | |
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 and linter | |
run: | | |
cd jsonnet && make --always-make all | |