Skip to content

Update .gitignore and modify EvilPortal to use dynamic button message #12

Update .gitignore and modify EvilPortal to use dynamic button message

Update .gitignore and modify EvilPortal to use dynamic button message #12

Workflow file for this run

name: Build, Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
python -m pip install platformio
- name: Install Dependencies
run: platformio lib install
- name: Build Project
run: platformio run -e m5stick-c
- name: Generate Compilation Database
run: platformio run -e m5stick-c -t compiledb
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install cppcheck
run: sudo apt-get update && sudo apt-get install -y cppcheck
- name: Run cppcheck
run: cppcheck --enable=all --inconclusive --std=c++17 --suppress=missingIncludeSystem src include