Update .Renviron to use curly brackets for Environment Variables #439
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.json' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.json' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate JSON | |
uses: walbo/[email protected] | |
with: | |
files: programs/*.json | |
schema: json-schema/program.json | |
schema-version: draft-07 | |
fail-on-missing-schema: true | |
strict: true |