Refactored code base to rename to REST and organize better #65
Workflow file for this run
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 JSON Structure Schema | |
| on: | |
| push: | |
| paths: | |
| - 'src/main/resources/schemas/**' | |
| - '!src/main/resources/schemas/examples/**' | |
| workflow_dispatch: | |
| jobs: | |
| validate-schema: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install and run jstruct | |
| run: | | |
| curl -fL https://github.com/json-structure/sdk/releases/download/jstruct-v0.5.5/jstruct_0.5.5_amd64.deb -o /tmp/jstruct.deb | |
| sudo dpkg -i /tmp/jstruct.deb | |
| jstruct check src/main/resources/schemas/naftiko-schema.json |