Fix memory leak in unit conversion (#122) #136
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: Check Code Format | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Check main format | |
uses: DoozyX/[email protected] | |
with: | |
source: "./src ./include/rtl_433_devices.h ./include/log.h" | |
exclude: "./src/rtl_433" | |
extensions: "h,c,cpp" | |
clangFormatVersion: 9 |