update python and rpm packaging #82
This file contains hidden or 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: Validate JSONs | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| verify-json-validation-website-2-x-x: | |
| strategy: | |
| matrix: | |
| version: [ 2.8.x, 2.6.x, 2.4.x ] | |
| runs-on: ubuntu-latest | |
| name: Website V2.x.x | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Validate JSON | |
| uses: nhalstead/validate-json-action@0.1.3 | |
| with: | |
| schema: ./libcobblersignatures/data/v1/schema.json | |
| jsons: ./libcobblersignatures/data/v1/distro_signatures.json | |
| verify-json-validation-website-3-0-x: | |
| runs-on: ubuntu-latest | |
| name: Website V3.0.x | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Validate JSON | |
| uses: nhalstead/validate-json-action@0.1.3 | |
| with: | |
| schema: ./libcobblersignatures/data/v2/schema.json | |
| jsons: ./libcobblersignatures/data/v2/distro_signatures.json | |
| verify-json-validation-website-latest: | |
| runs-on: ubuntu-latest | |
| name: Website V3.0.x | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Validate JSON | |
| uses: nhalstead/validate-json-action@0.1.3 | |
| with: | |
| schema: ./libcobblersignatures/data/v2/schema.json | |
| jsons: ./libcobblersignatures/data/v2/distro_signatures.json |