Skip to content

Add GD32F10x to known datasheets #217

Add GD32F10x to known datasheets

Add GD32F10x to known datasheets #217

Workflow file for this run

name: Examples
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7]
example:
- "examples/gd32-arduino-blinky"
- "examples/gd32-mbedos-baremetal-blinky"
- "examples/gd32-spl-blinky"
- "examples/gd32-w51x-wifi-scan"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
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
platformio platform install file://.
- name: Build examples
run: |
platformio run -d ${{ matrix.example }}