master
yml 22 lines 497 Bytes
Raw
1 name: Validate distributions
2
3 on:
4 pull_request:
5 paths: ['distributions/**']
6 schedule:
7 - cron: '0 0 * * *'
8
9 permissions:
10 contents: read
11
12 jobs:
13 check:
14 name: Validate distributions
15 runs-on: ubuntu-latest
16 steps:
17 - name: Checkout repo
18 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
19
20 - name: Run validation
21 run: python distributions/validate.py distributions/DistributionInfo.json
22 shell: bash