Skip to content

Final fix piohome crash with VSC #3

Final fix piohome crash with VSC

Final fix piohome crash with VSC #3

Workflow file for this run

name: Projects
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
project:
- PlatformTest:
repository: "Jason2866/platform-test"
folder: "src"
config_dir: "src"
env_name: "esp32-s3"
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install PlatformIO
run: pip install -U .
- name: Check out ${{ matrix.project.repository }}
uses: actions/checkout@v4
with:
submodules: "recursive"
repository: ${{ matrix.project.repository }}
path: ${{ matrix.project.folder }}
- name: Compile example ${{ matrix.project.repository }}
run: |
pio run -d ${{ matrix.project.config_dir }} -e ${{ matrix.project.env_name }}