Skip to content

Create CODE_OF_CONDUCT.md #4

Create CODE_OF_CONDUCT.md

Create CODE_OF_CONDUCT.md #4

Workflow file for this run

name: PlatformIO CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: pio run
- uses: actions/upload-artifact@v4
with:
# Name of the artifact to upload.
# Optional. Default is 'artifact'
name: firmware
# A file, directory or wildcard pattern that describes what to upload
# Required.
path: ".pio/build/esp32-s3-devkitc-1/firmware.bin"