Merge pull request #122 from openebs/ver_60 #115
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 | |