WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson b9c8ad5507
Some checks failed
Compile / Compile (push) Failing after 4s
Runner environment doesn't have sudo.
2023-05-30 19:12:19 +03:00

13 lines
277 B
YAML

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