mirror of
https://github.com/CovidBraceletPrj/CovidBracelet.git
synced 2025-03-13 11:11:12 +01:00
18 lines
387 B
YAML
18 lines
387 B
YAML
name: test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v1
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install platformio
|
|
- name: Run PlatformIO Tests
|
|
run: platformio test --environment desktop
|