Skip to content

[DOC] Add more installation instruction #17

[DOC] Add more installation instruction

[DOC] Add more installation instruction #17

Workflow file for this run

# Copyright (C) 2024 Juen Rene´
#
# This file is part of hx711.
#
# hx711 is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# hx711 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with hx711. If not, see <https://www.gnu.org/licenses/>.
name: CPP Check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: install platformIO core
run: pip install --upgrade platformio
- name: cppcheck for platformIO project
run: |
cd example
platformio check --verbose --severity=high --fail-on-defect=high --skip-packages