2020-03-01 03:05:48 +00:00
|
|
|
name: Continuous Integration
|
2020-03-16 00:42:48 +00:00
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2020-02-27 01:20:19 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
name: Main
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@master
|
|
|
|
with:
|
2020-02-27 01:37:08 +00:00
|
|
|
python-version: 3.x
|
2020-02-27 01:20:19 +00:00
|
|
|
- name: Install Platform IO
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -U platformio
|
|
|
|
- name: Build
|
|
|
|
run: platformio run
|