Files
Arduino-Volume-Controller/.gitea/workflows/attempt-build.yaml
Lyubomir Penev 8e22bff38e
Some checks failed
Build Code / build (push) Has been cancelled
Changed runner to use platformio
2025-10-22 14:15:42 +02:00

27 lines
532 B
YAML

name: Build Code
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: pio run