Skip to content

Remove unnecessary "fmt" #23

Remove unnecessary "fmt"

Remove unnecessary "fmt" #23

Workflow file for this run

on:
pull_request:
branches:
- main
push:
branches:
- main
name: Validate bangs.json
jobs:
validate-bangs-json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate JSON
uses: walbo/validate-json@v1.1.0
with:
files: ./bangs.json
# optional, defaults to `$schema` in your JSON file
schema: ./data/bangs.schema.json
# optional, default: draft-04
schema-version: draft-07
# optional, default: false
print-valid-files: true
# optional, default: false
fail-on-missing-schema: true
# optional, default: true
strict: true
# optional, default: false
allow-matching-properties: false
# optional, default: true
allow-union-types: true