blob: 34c9c4546a19dea2c4b5b5832974e4b250313200 (
plain)
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
|
---
name: Build Pull Request Package
on:
pull_request:
branches:
- current
- sagitta
- equuleus
jobs:
j2lint:
name: Validate j2 files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
timeout-minutes: 2
- name: Setup J2Lint
timeout-minutes: 2
run: |
sudo pip install git+https://github.com/aristanetworks/j2lint.git@341b5d5db86e095b622f09770cb6367a1583620e
- name: Run J2lint
timeout-minutes: 2
run: |
j2lint $GITHUB_WORKSPACE/data
|