Skip to content

Fix workflows

Fix workflows #1

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
branches:
jobs:
build:
name: PlatformIO Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: pip
- name: Install PlatformIO Core
run: pip install -r requirements.txt
- name: Build PlatformIO project
run: platformio run