mirror of
https://github.com/RobTillaart/I2C_EEPROM.git
synced 2026-07-28 04:16:22 +00:00
- fix #83, update readme.md (thanks to TonyRiddiough) - add calculatePageSize(deviceSize) to replace getPageSize(deviceSize) prep. - update GitHub actions - minor update examples - minor edits
20 lines
334 B
YAML
20 lines
334 B
YAML
name: JSON check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.json'
|
|
pull_request:
|
|
paths:
|
|
- '**.json'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: json-syntax-check
|
|
uses: limitusus/json-syntax-check@v2
|
|
with:
|
|
pattern: "\\.json$" |