Merge pull request #1575 from JonnyHaystack/prevent_cli_sei_redefinition #430
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 build dependencies | |
run: | | |
pip install -r ci/requirements.txt | |
- name: Build FastLED examples | |
run: python ./ci/ci-compile.py |