dissable cppcheck as it will just fail

pull/76/head
Peter Buchegger 2021-04-09 23:09:49 +02:00
rodzic f467b431df
commit 0a74a4c205
1 zmienionych plików z 23 dodań i 23 usunięć

Wyświetl plik

@ -3,29 +3,29 @@ name: push pull checks
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
check: #check:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- uses: actions/checkout@v2 # - uses: actions/checkout@v2
- name: Cache pip # - name: Cache pip
uses: actions/cache@v2 # uses: actions/cache@v2
with: # with:
path: ~/.cache/pip # path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} # key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: ${{ runner.os }}-pip- # restore-keys: ${{ runner.os }}-pip-
- name: Cache PlatformIO # - name: Cache PlatformIO
uses: actions/cache@v2 # uses: actions/cache@v2
with: # with:
path: ~/.platformio # path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} # key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python # - name: Set up Python
uses: actions/setup-python@v2 # uses: actions/setup-python@v2
- name: Install PlatformIO # - name: Install PlatformIO
run: | # run: |
python -m pip install --upgrade pip # python -m pip install --upgrade pip
pip install --upgrade platformio # pip install --upgrade platformio
- name: Run PlatformIO Check # - name: Run PlatformIO Check
run: platformio check --fail-on-defect low --fail-on-defect medium --fail-on-defect high # run: platformio check --fail-on-defect low --fail-on-defect medium --fail-on-defect high
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest