Added windows platform to Kasts #663
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Validate JSON | |
uses: nhalstead/[email protected] | |
with: | |
# Relative file path under the repository of a JSON schema file to validate the other JSON files with. | |
schema: server/data/apps-schema.json | |
# One or more relative file paths under the repository (separated by comma) of the JSON files to validate with the schema provided. | |
jsons: server/data/apps.json |