mirror of
https://github.com/RobTillaart/I2C_EEPROM.git
synced 2026-07-27 20:06:07 +00:00
- Fix #64, compiler warning. - add **verifyBlock(memoryAddress, buffer, length)** - add example **I2C_eeprom_verifyBlock.ino** - update GitHub actions - update keywords.txt - update examples - update readme.md
20 lines
307 B
YAML
20 lines
307 B
YAML
name: JSON check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**.json'
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: json-syntax-check
|
|
uses: limitusus/json-syntax-check@v2
|
|
with:
|
|
pattern: "\\.json$"
|
|
|