You've already forked platform-espressif32
mirror of
https://github.com/m5stack/platform-espressif32.git
synced 2026-05-20 11:04:15 -07:00
31 lines
910 B
YAML
31 lines
910 B
YAML
name: "Unit Testing"
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
python-version: [3.7]
|
|
example:
|
|
- "examples/espidf-hello-world"
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: "recursive"
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -U https://github.com/platformio/platformio/archive/develop.zip
|
|
pio pkg install --global --platform symlink://.
|
|
- name: Build test
|
|
run: |
|
|
pio test -d ${{ matrix.example }} --without-uploading --without-testing
|