Skip to content

Fix typo

Fix typo #14

name: Build Examples
on:
push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
example: [send-sms, receive-sms]
env_name: [nodemcuv2, wemos_d1_mini32]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Build ${{ matrix.example }} on ${{ matrix.env_name }}
working-directory: examples/${{ matrix.example }}/
run: pio run -e ${{ matrix.env_name }}