WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 75093df1bd
Some checks failed
Compile / Compile (push) Failing after 37s
Debugging workspace file
2023-05-30 21:04:49 +03:00

18 lines
370 B
YAML

name: Compile
run-name: ${{ github.actor }} is compiling
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- name: Setup PlatformIO
run: |
apt update
apt -y install platformio
- name: Compile
run: |
ls
cd ${{ github.workspace }}
ls
pio run
- run: echo "Done."