Skip to content

next try with working dir #11

next try with working dir

next try with working dir #11

Workflow file for this run

name: PlatformIO CI
on:
push:
branches:
- main
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.9"
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Install TFT_eSPI Library
run: platformio lib -g install "TFT_eSPI" "QRCode"
- name: Build code
run: pio run --environment ttgo-lora32-v1
working-directory: ./src
- name: List build output
run: ls -l .pio/build/ttgo-lora32-v1/