Skip to content

updated readme

updated readme #1

Workflow file for this run

name: PlatformIO CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install PlatformIO CLI
run: pip install platformio
- name: Run PlatformIO Test
run: pio test -e test_env