Files
RFPowerView/.gitea/workflows/build.yaml
Matt Way afaa9dd0eb
Some checks failed
PlatformIO CI / build (push) Failing after 18s
Downgrade setup-python to v3
2024-04-09 13:35:29 +10:00

24 lines
508 B
YAML

name: PlatformIO CI
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@v3
with:
python-version: '3.12'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: pio test