GY-63_MS5611/libraries/MultiMap/.github/workflows/jsoncheck.yml

18 lines
305 B
YAML
Raw Normal View History

2021-04-07 07:31:22 -04:00
name: JSON check
on:
push:
paths:
- '**.json'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
2024-04-13 04:35:57 -04:00
timeout-minutes: 5
2021-04-07 07:31:22 -04:00
steps:
2024-04-13 04:35:57 -04:00
- uses: actions/checkout@v4
2021-04-07 07:31:22 -04:00
- name: json-syntax-check
2024-04-13 04:35:57 -04:00
uses: limitusus/json-syntax-check@v2
2021-04-07 07:31:22 -04:00
with:
2024-04-13 04:35:57 -04:00
pattern: "\\.json$"