30 lines
507 B
YAML
30 lines
507 B
YAML
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
name: build
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: install python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: install platformio
|
|
run: |
|
|
pip install platformio==6.1.4
|
|
|
|
- name: build FastLED examples
|
|
run: ./ci/ci-compile
|