2020-08-18 23:32:23 +02:00
|
|
|
name: test
|
2020-08-18 23:16:02 +02:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python
|
2020-08-18 23:18:53 +02:00
|
|
|
uses: actions/setup-python@v1
|
2020-08-18 23:16:02 +02:00
|
|
|
- name: Install dependencies
|
2020-08-18 23:17:53 +02:00
|
|
|
run: |
|
2020-08-18 23:16:02 +02:00
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install platformio
|
2021-04-23 15:33:36 +02:00
|
|
|
platformio upgrade --dev
|
|
|
|
platformio update
|
2020-08-18 23:16:02 +02:00
|
|
|
- name: Run PlatformIO Tests
|
2020-08-18 23:17:53 +02:00
|
|
|
run: platformio test --environment desktop
|