Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Guyer <sam.guyer@gmail.com>2021-04-29 17:44:07 +0300
committerSam Guyer <sam.guyer@gmail.com>2021-04-29 17:44:07 +0300
commit4b2d3339f8a1acd33621070e82d9685d506b177e (patch)
treec98e9ebb3ab086169c69673d75789355586d3c5d /.github/workflows/build.yml
parent65a76c512e51a2c000c60005552ce7cd5347c88b (diff)
parent2785f3d81dc360f021613268b2bc6ca69f578326 (diff)
Merge branch 'master' of https://github.com/FastLED/FastLED
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..d47e46b0
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,28 @@
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+ branches:
+ - master
+
+name: build
+jobs:
+
+ build:
+ runs-on: ubuntu-20.04
+ steps:
+ - name: checkout code
+ uses: actions/checkout@v2
+
+ - name: install python
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.8'
+
+ - name: install platformio
+ run: |
+ pip install platformio==5.0.3
+
+ - name: build FastLED examples
+ run: ./ci/ci-compile