WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 8c5392c31a
Some checks failed
Compile / Compile (push) Failing after 48s
Maybe the yml syntax was fucked?
2023-05-30 19:09:57 +03:00

13 lines
282 B
YAML

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