Make PA ramp up time configurable for SX1262 #74
Workflow file for this run
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: "Cppcheck" | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
check: | |
name: Perform static code check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install cppcheck | |
run: | |
| | |
sudo apt-get update | |
sudo apt-get install -y cppcheck | |
- name: Run cppcheck | |
run: | |
cppcheck src --enable=all --force |