try github actions for CI builds

This commit is contained in:
geeksville
2020-02-26 17:20:19 -08:00
parent 0a796c4937
commit 31e9d34d1e
2 changed files with 26 additions and 0 deletions

19
.github/main.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Test Configuration
on: push
jobs:
main:
name: Main
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: '3.x'
- name: Install Platform IO
run: |
python -m pip install --upgrade pip
pip install -U platformio
- name: Build
run: platformio run