-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 924 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
name: Lint & Test
"on":
pull_request: {}
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-yamllint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
jsonnetfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: addnab/docker-run-action@v3
with:
image: docker.io/bitnami/jsonnet:latest
options: -v ${{ github.workspace }}:/work -w /work
run: |
for f in $(find . -name '*.jsonnet' -print); do
jsonnetfmt --pad-arrays --test -- $f
done
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-review
pattern: |
*.sh
step-*